iOS超出屏幕的尺寸的图片如何按比例缩放显示
2017-04-19 本文已影响52人
张家杰仔
_imageView.contentMode = UIViewContentModeScaleAspectFit;
_imageView.autoresizesSubviews = YES;
_imageView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;