UIViewContentMode 各类型效果
UIViewContentMode
typedef NS_ENUM(NSInteger, UIViewContentMode) {
但凡在设置图片模式的枚举中包含Scale这个单词的值, 都会对原有的图片进行缩放
UIViewContentModeScaleToFill,
按照"UIImageView"的宽高比缩放图片至图片填充整个UIImageView;
UIViewContentModeScaleAspectFit,
按照"图片的宽高"比例缩放图片至图片的宽度或者高度和UIImageView一样, 并且让整个图片都在UIImageView中. 然后居中显示
UIViewContentModeScaleAspectFill,
按照"图片的宽高"比例缩放图片至图片的宽度和高度填充整个UIImageView. 然后居中显示
UIViewContentModeRedraw,
UIViewContentModeCenter,
UIViewContentModeTop,
UIViewContentModeBottom,
UIViewContentModeLeft,
UIViewContentModeRight,
UIViewContentModeTopLeft,
UIViewContentModeTopRight,
UIViewContentModeBottomLeft,
UIViewContentModeBottomRight,
};
图片展示如下:
1483801-939aa9f30c377571.png
网友评论