现在的位置: 首页 > 综合 > 正文

IOS-UIImageView 图片自适应大小

2018年02月02日 ⁄ 综合 ⁄ 共 379字 ⁄ 字号 评论关闭

<pre name="code" class="objc">UIImageView *imageView = [[UIImageView alloc] initWithFrame:frame];
imageView.contentMode = UIViewContentModeScaleToFill;
imageView.clipsToBounds = YES;
imageView.autoresizesSubviews = YES;
imageView.autoresizingMask =
            UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;


</pre><pre>

抱歉!评论已关闭.