如果我有77x77的imageview,并且我想在此imageview中调整UIImage,是否可能? 在我想在这个imageview中设置一个大小为300x200的图像的例子,有没有办法在这个imageview中调整这个图像(77x77)? 感谢
答案 0 :(得分:3)
是的,myImageView.contentMode = UIViewContentModeScaleAspectFit;
该属性继承自UIView。
UIViewContentMode
指定视图在其大小更改时如何调整其内容。
typedef enum {
UIViewContentModeScaleToFill,
UIViewContentModeScaleAspectFit,
UIViewContentModeScaleAspectFill,
UIViewContentModeRedraw,
UIViewContentModeCenter,
UIViewContentModeTop,
UIViewContentModeBottom,
UIViewContentModeLeft,
UIViewContentModeRight,
UIViewContentModeTopLeft,
UIViewContentModeTopRight,
UIViewContentModeBottomLeft,
UIViewContentModeBottomRight,
} UIViewContentMode;