标签:
leftView.contentMode = UIViewContentModeCenter;
imageView的Mode UIViewContentModeScaleToFill, //控制多大,图片就拉伸到多大 UIViewContentModeScaleAspectFit, //会把图片等比例拉伸到完全包裹为止 UIViewContentModeScaleAspectFill, //会把图片等比例拉伸到图片完全填充控件 UIViewContentModeRedraw, //如果指定这个模式,控件的宽高改变的话,会去重新绘制(draw),一般不建议使用这个模式redraw on bounds change (calls -setNeedsDisplay) UIViewContentModeCenter, //会把内容放在最中间 UIViewContentModeTop, UIViewContentModeBottom, UIViewContentModeLeft, UIViewContentModeRight, UIViewContentModeTopLeft, UIViewContentModeTopRight, UIViewContentModeBottomLeft, UIViewContentModeBottomRight,
标签:
原文地址:http://www.cnblogs.com/gp886/p/4945925.html