我的滚动视图中有一个按钮,我想定位 x,y 位置(在图像中标记为粉红点),并在我单击按钮的任何部分时将其分配给我的变量,而不管滚动如何。下面的代码将为我提供与滚动无关的触摸位置,同样是否有通用代码来获取图像中粉红色斑点的位置而与滚动无关?
NSSet *touches = [event touchesForView:sender];
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:self.view];
CGPoint locationX = [touch locationInView:sender];
NSLog(@"Location: %f, %f", location.x, location.y);