UIViewContentMode各类型效果

来源:互联网 发布:淘宝做代理有风险吗 编辑:程序博客网 时间:2024/06/05 03:40
UIView的属性:
@property(nonatomic)UIViewContentMode contentMode;// default is UIViewContentModeScaleToFill

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;

 

 

原文链接:http://blog.csdn.net/iunion/article/details/7494511

原创粉丝点击