美文网首页
图片在UIImageView上呈现的效果

图片在UIImageView上呈现的效果

作者: LearningCoding | 来源:发表于2016-06-02 12:05 被阅读152次

    在开发中,经常会使用到图片,我们给一个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上呈现的效果

          本文链接:https://www.haomeiwen.com/subject/gafkdttx.html