I have a UIImageView
and when I touch it I can get the location of the touch with:
[touch locationInView:theUIImageView]
The problem is that when I rotate the UIImageView with:
theUIImageView.transform = CGAffineTransformMakeRotation(DegreesToRadians(arc4random()%15));
the [touch locationInView:theUIImageView]
no longer returns the correct location of the tap! *gasp!
Any suggestions on how to get the real tap location
?