[ios]swift uiimageview contentmode not working , translatesAutoresizingMaskIntoConstraints 연관 이슈해결방법
[ios]swift uiimageview contentmode not working , translatesAutoresizingMaskIntoConstraints 연관 이슈해결방법
contentmode = .scaleAspectFill
viewDidLoad 에서 설정할려고 했다. 그런데~~~
self.Image.translatesAutoresizingMaskIntoConstraints = false
적용을 하려고 하니 초기화 되버리는 이슈가 있다..
자 그러면 어떻게 해야 할까??
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
self.Image.contentMode = .scaleAspectFill
}
이러면 된다~
'ios,swift' 카테고리의 다른 글
[SceneDelegate]삭제방법 (0) | 2020.05.29 |
---|---|
[ios]swfit model version check 방법 (0) | 2020.04.27 |
[ios]swift .byTruncatingTail not working 해결방법 (0) | 2020.04.01 |
[ios]swift firebase auth password update 방법 (0) | 2020.03.30 |
[ios]swift firebase auth password reset mail 보내는방법 (0) | 2020.03.30 |