QQ空间,微博空间图片的保真剪裁显示使用UIViewContentModeScaleAspectFill

来源:互联网 发布:淘宝保证金怎么退回 编辑:程序博客网 时间:2024/06/15 13:44
图片填充的几种模式UIViewContentMode

另外 还要切割边缘->

imageView.clipsToBounds =YES;


typedef enum {
    UIViewContentModeScaleToFill,
    UIViewContentModeScaleAspectFit,      // contents scaled to fit with fixed aspect. remainder is transparent
    UIViewContentModeScaleAspectFill,     // contents scaled to fill with fixed aspect. some portion of content may be clipped.
    UIViewContentModeRedraw,              // redraw on bounds change (calls -setNeedsDisplay)
    UIViewContentModeCenter,              // contents remain same size. positioned adjusted.
    UIViewContentModeTop,
    UIViewContentModeBottom,
    UIViewContentModeLeft,
    UIViewContentModeRight,
    UIViewContentModeTopLeft,
    UIViewContentModeTopRight,
    UIViewContentModeBottomLeft,
    UIViewContentModeBottomRight,
} UIViewContentMode; 

 

 













0 0