图片在UIImageView上呈现的效果

2016-06-02  本文已影响152人  LearningCoding

在开发中,经常会使用到图片,我们给一个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,
};

上一篇下一篇

猜你喜欢

热点阅读