HIG

[iOS / HIG] Image Views

Minny27 2022. 2. 5. 20:59

Image Views

An image view displays a single image or an animated sequence of images over a transparent or opaque background. Within an image view, images may be stretched, scaled, sized to fit, or pinned to a specific location. Image views are noninteractive by default.

image view는 투명하거나 불투명한 배경에 단일 이미지 또는 이미지의 애니메이션 시퀀스를 표시합니다. 이미지 보기 내에서 이미지는 특정 위치에 맞게 늘리거나 크기를 조정하거나 고정할 수 있습니다. image view는 기본적으로 대화식이 아닙니다.

 

If possible, make sure all images in an animated sequence are consistently sized. Ideally, images should be prescaled to fit the view so the system doesn't have to do any scaling. If the system must perform scaling, it's easiest to achieve the desired results when all images are the same size and shape.

가능한 경우 애니메이션 시퀀스의 모든 이미지의 크기를 일정하게 조정하십시오. 이상적으로는 시스템이 스케일링을 수행할 필요가 없도록 이미지가 view에 맞게 사전 조정되어야 합니다. 시스템에서 스케일 조정을 수행해야 하는 경우 모든 이미지의 크기와 모양이 동일할 때 원하는 결과를 얻는 것이 가장 쉽습니다.

 

For developer guidance, see UIImageView.

개발자 지침은 UIImageView를 참조하십시오.

 

NOTE

An image that’s been configured as a template image discards its color and adopts any tint that’s been applied to the enclosing image view. See Custom Icons. For developer guidance, see UIImageRenderingModeAlwaysTemplate in UIImage.

템플릿 이미지로 구성된 이미지는 색상을 무시하고 동봉된 이미지 보기에 적용된 색조를 적용합니다. 사용자 정의 아이콘을 참조하십시오. 개발자 지침은 UIImage에서 UIImageRenderingModeAlwaysTemplate을 참조하십시오.

 

 

 

 

※ 참고 출처

애플 개발자 문서

 

Image Views - Views - iOS - Human Interface Guidelines - Apple Developer

Image Views An image view displays a single image or an animated sequence of images over a transparent or opaque background. Within an image view, images may be stretched, scaled, sized to fit, or pinned to a specific location. Image views are noninteracti

developer.apple.com

 

'HIG' 카테고리의 다른 글

[iOS / HIG] Text Fields  (0) 2022.02.05
[iOS / HIG] Tables  (0) 2022.02.05
[iOS / HIG] Collections  (0) 2022.02.05
[iOS / HIG] Tab Bars  (0) 2022.02.05
[iOS / HIG] Status Bars  (0) 2022.02.05