iOS学习iOS 开发每天分享优质文章iOS Developer

图片剪辑

2017-06-07  本文已影响82人  答案在风中飘

tableview 中的imageview 有时候可能需要裁剪 或得想要的尺寸 

cell.bigPic.contentMode = UIViewContentModeScaleAspectFill;

cell.bigPic.clipsToBounds = YES;

cell.bigPic.userInteractionEnabled = YES;

可选择的枚举值

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,

};

上一篇 下一篇

猜你喜欢

热点阅读