[iOS] ImageView ContentMode
Roel Downey
ImageView는 contentMode property가 존재한다. property는 Image가 화면에 어떻게 보여질지를 결정하는데 사용된다. Scale To Fill(UIView.ContentMode.scaleToFill) 기본값 imageView의 width와 height에 image를 늘려서 넣는다. 원본 비율을 무시한다. Aspect To Fit (UIView.ContentMode.scaleAspectFit ) 비율을 원본 비율로 유지한다. image가 imageView의 크기를 벗어나지 않는다. imageView 내부에서 최대값을 갖는다. image의 비율이 imageView 크기와 맞지 않으면 여백이 생김 Aspect To Fill UIView.ContentMode.scaleAspectFi..