我有一个UIImageView
,当我触摸它时,我可以通过以下方式获得触摸的位置:
[touch locationInView:theUIImageView]
问题是当我旋转 UIImageView 时:
theUIImageView.transform = CGAffineTransformMakeRotation(DegreesToRadians(arc4random()%15));
[touch locationInView:theUIImageView]
不再返回水龙头的正确位置!*喘气!
关于如何获得的任何建议real tap location
?