UIView的contentMode说明

内容模式

typedef NS_ENUM(NSInteger, UIViewContentMode) {
    UIViewContentModeScaleToFill,  //默认的模式,缩放内容的宽高比来适应view的大小。
    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,
};

你可能感兴趣的:(UIView的contentMode说明)