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的高寬發(fā)生變化
2.賦給 view的transform屬性的值帶有scale
UIViewContentModeScaleToFill:改變內容的高寬比例馏锡,縮放內容,UIView中完整顯示內容伟端,填滿UIView
UIViewContentModeScaleAspectFit:保持內容的高寬比杯道,縮放內容,完整顯示內容责蝠,最大化填充UIview党巾,沒填充上的區(qū)域透明
UIViewContentModeScaleAspectFill:保持內容高寬比,縮放內容霜医,超出視圖的部分內容會被裁減齿拂,填充UIView,需要把View的 clipsToBounds 設置為YES;
UIViewContentModeRedraw:當View的bounds改變肴敛,系統(tǒng)會調用setNeedsDisplay署海,重新繪制視圖
UIViewContentModeCenter:不縮放吗购,內容在視圖中間
效果圖如下: