我在视图上添加了longpressGesture识别器并指定了NoofTouchesRequired=2
。我想获取我一直按下的两个视图的坐标。
MyCode如下:
//---long press gesture---
UILongPressGestureRecognizer *longpressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector (handleLongpressGesture:)];
longpressGesture.minimumPressDuration = 4;
longpressGesture.numberOfTouchesRequired = 2;
[viewLongPress addGestureRecognizer:longpressGesture];
[longpressGesture release];
最佳答案
UIGestureRecognizer
为此具有locationInView:
方法。
关于ios - 获取添加了longpressGesture识别器的 View 坐标,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20769759/