我的滚动视图中有一个按钮,我想找到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);