UIImage Is Not Fitting In UIScrollView At Start

后端 未结 5 956
-上瘾入骨i
-上瘾入骨i 2020-12-30 12:07

I have an image like:

\"Want

When I load the image to uiimageview and then adding as a subvie

5条回答
  •  我在风中等你
    2020-12-30 12:29

    Have a look at the contentMode-Property of UIView (UIImageView also supports this).

    imageView.contentMode = UIViewContentModeScaleAspectFit;
    

    This should work...

提交回复
热议问题