I have a simple UIImageView
of in my screen as follow:
To get the co-ordinates of highlighted corner of this UIImageView
, I use simple formula:
CGPointMake(CGRectGetMaxX(imageView.frame), CGRectGetMaxY(imageView.frame))
Now I rotate this imageView
and it looks as follows:
After this rotation, how can I get the co-ordinates of this highlighted point? Because after rotation, the previous code is not applicable.