UIImage: Resize, then Crop

后端 未结 16 2440
夕颜
夕颜 2020-11-22 11:51

I\'ve been bashing my face into this one for literally days now and even though I feel constantly that I am right on the edge of revelation, I simply cannot achieve my goal.

16条回答
  •  不要未来只要你来
    2020-11-22 12:23

    The following simple code worked for me.

    [imageView setContentMode:UIViewContentModeScaleAspectFill];
    [imageView setClipsToBounds:YES];
    

提交回复
热议问题