在开发中,经常会使用到图片,我们给一个ImageView设置了固定的大小,但是得到的图片往往不是这个大小,造成图片被拉伸或压缩变形,你要合理利用这几个属性,就可以得到很多想要的效果了
searchIcon.contentMode
typedef NS_ENUM(NSInteger, UIViewContentMode) {
UIViewContentModeScaleToFill, // 根据UIImageView的大小,占据整个,会出现拉伸和压缩
UIViewContentModeScaleAspectFit, // contents scaled to fit with fixed aspect. remainder is transparent 根据UIImageView的大小,将图片等比缩小到能放下
UIViewContentModeScaleAspectFill, // contents scaled to fill with fixed aspect. some portion of content may be clipped. 搭配maskToBounds = YES; 就可以从中间裁切出完美的图片了
UIViewContentModeRedraw, // redraw on bounds change (calls -setNeedsDisplay)
UIViewContentModeCenter, // contents remain same size. 尺寸一样,放在中间部分positioned adjusted.
UIViewContentModeTop,
UIViewContentModeBottom,
UIViewContentModeLeft,
UIViewContentModeRight,
UIViewContentModeTopLeft,
UIViewContentModeTopRight,
UIViewContentModeBottomLeft,
UIViewContentModeBottomRight,
};
图片在UIImageView上呈现的效果
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- UIImageView的ContentMode的这些参数,这些参数一般就能满分我们的开发需求 UIViewCont...
- UIImageView的contentMode这个属性是用来设置图片的显示方式,如居中、居右,是否缩放等,系统给出...
- UIImageView 的contentMode这个属性是用来设置图片的显示方式,如居中、居右,是否缩放等,有以下...
- 一.常用属性 1、image: default is nil。图片属性 image的格式可以是.png或者.jpg...