我需要获取触摸位置,并且我创建了一个获取它的方法。但是当我在 ScrollView 中触摸时,该方法不返回位置,只返回 scrollView。
这是代码:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[event allTouches] anyObject];
CGPoint pos = [touch locationInView:nil];
NSLog(@"Position of touch: %.0f, %.0f", pos.x, pos.y);
}
有人知道怎么做吗?谢谢!