0
如果我有77x77的圖像視圖,並且想要在此圖像視圖中調整UIImage,是否有可能? 在這個例子中,我想在這個imageview中設置一個大小爲300x200的圖像,是否有一種方法可以在此imageview中調整此圖像(77x77)? 感謝IOS:在圖像視圖中設置圖像的快速方法
如果我有77x77的圖像視圖,並且想要在此圖像視圖中調整UIImage,是否有可能? 在這個例子中,我想在這個imageview中設置一個大小爲300x200的圖像,是否有一種方法可以在此imageview中調整此圖像(77x77)? 感謝IOS:在圖像視圖中設置圖像的快速方法
是,myImageView.contentMode = UIViewContentModeScaleAspectFit;
該酒店距離UIView繼承。
UIViewContentMode
指定如何視圖調整時,其含量的大小變化。
typedef enum {
UIViewContentModeScaleToFill,
UIViewContentModeScaleAspectFit,
UIViewContentModeScaleAspectFill,
UIViewContentModeRedraw,
UIViewContentModeCenter,
UIViewContentModeTop,
UIViewContentModeBottom,
UIViewContentModeLeft,
UIViewContentModeRight,
UIViewContentModeTopLeft,
UIViewContentModeTopRight,
UIViewContentModeBottomLeft,
UIViewContentModeBottomRight,
} UIViewContentMode;