Reputation: 21726
I have imageView with some frame
imageView.frame = CGRectMake(0,0, 100, 100);
imageView.contentMode = UIViewContentModeScaleAspectFit;
imageView.image = myImage;
The question is :
Is there any property or method in imageview to know the result size of the image after it's resizing (something like this : imageView.image.size)
(or should i calculate it myself using image size before and imageview frame)?
Upvotes: 0
Views: 442
Reputation: 92306
There's no way to query the size of the scaled image, you have to calculate it yourself using the image size and the size constraints.
Upvotes: 2