Content Modes###
每一个view
都有一个contentMode
属性。这个属性用来控制view如何重用界面的内容以响应界面的几何变化,或者是将整个内容完全重用。
当一个view
第一次被展示的时候,它会将自己的内容渲染为一张位图。之后,改变view的几何尺寸不会总是导致这个位图重绘。相反的,contentMode属性决定了这个位图会如何显示,是进行缩放以适应新的尺寸,或者只是简单的与某一个边缘或者顶点对齐。
当做以下操作都会使得contentMode
属性生效:
- 修改view的frame或者bounds属性的width或者height
- 给view的transform赋一个具有缩放动作的值
系统提供了如下的属性
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
的默认属性是UIViewContentModeScaleToFill
,这个属性使得contents进行缩放以适应新的frame。
下图展示了不同的属性所产生的效果:
由图中看到UIViewContentModeScaleToFill
属性会导致形变。而
UIViewContentModeScaleAspectFill
导致内容不能完全展示.
content modes是界面重用内容的好方法,当然你也可以设置UIViewContentModeRedraw
,使得你的自定义界面在尺寸变化时强制重绘。当设置contentModel
属性为UIViewContentModeRedraw
后,在view尺寸变化时,系统会强制调用drawRect:
方法。一般来说,你应该尽可能的避免使用这个值,并且确保没有给系统标准view设定这个值。
网友评论