iOS【UIView】contentMode

contentMode是UIView的属性(如下图),这个属性的值决定了,当视图的几何形状变化时如何复用它的内容。当视图第一次展示前,它会将自己的内容渲染成一张底层的bitmap. 然后视图的几何变化都不会使bitmap重新生成。而视图contentMode属性的值决定了bitmap是否缩放、位置在哪儿(固定在左边、右边、上面、下面、居中)。默认情况下,contentMode的值是UIViewContentModeScaleToFill。

typedef NS_ENUM(NSInteger, UIViewContentMode) {
    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,
};

contentMode在以下两种情况下会起作用:
1.视图frame或bounds的高宽发生变化
2.赋给 view的transform属性的值带有scale

UIViewContentModeScaleToFill:改变内容的高宽比例,缩放内容,UIView中完整显示内容,填满UIView
UIViewContentModeScaleAspectFit:保持内容的高宽比,缩放内容,完整显示内容,最大化填充UIview,没填充上的区域透明
UIViewContentModeScaleAspectFill:保持内容高宽比,缩放内容,超出视图的部分内容会被裁减,填充UIView,需要把View的 clipsToBounds 设置为YES;
UIViewContentModeRedraw:当View的bounds改变,系统会调用setNeedsDisplay,重新绘制视图
UIViewContentModeCenter:不缩放,内容在视图中间

效果图如下:

iOS【UIView】contentMode_第1张图片
1.png

你可能感兴趣的:(iOS【UIView】contentMode)