how can I get the scale factor of a UIImageView who\'s mode is AspectFit?
That is, I have a UIImageView with mode AspectFit. The image (square) is scaled to my UIIm
Well you could do something like
CGFloat widthScale = imageView.image.size.width / imageView.frame.size.width; CGFloat heightScale = imageView.image.size.height / imageView.frame.size.height;
Let me know if that works for you.