美文网首页
UIImageView 的contentMode属性应用

UIImageView 的contentMode属性应用

作者: 大路777 | 来源:发表于2016-11-01 15:59 被阅读21次
    UIViewContentModeScaleToFill
    UIViewContentModeScaleAspectFit
    UIViewContentModeScaleAspectFill
    UIViewContentModeRedraw
    UIViewContentModeCenter
    UIViewContentModeTop
    UIViewContentModeBottom
    UIViewContentModeLeft
    UIViewContentModeRight
    UIViewContentModeTopLeft
    UIViewContentModeTopRight
    UIViewContentModeBottomLeft
    UIViewContentModeBottomRight
    
    //使用
     ImageView.contentMode = UIViewContentModeCenter;
    

    注意以上几个常量,凡是没有带Scale的,当图片尺寸超过
    ImageView尺寸时,只有部分显示在ImageView中。UIViewContentModeScaleToFill属性会导致图片变形。UIViewContentModeScaleAspectFit会保证图片比例不变,而且全部显示在ImageView中,这意味着ImageView会有部分空白。UIViewContentModeScaleAspectFill也会证图片比例不变,但是是填充整个ImageView的,可能只有部分图片显示出来。

    相关文章

      网友评论

          本文标题:UIImageView 的contentMode属性应用

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