当 1 根手指在屏幕上抬起时禁用捏合识别器
Posted
技术标签:
【中文标题】当 1 根手指在屏幕上抬起时禁用捏合识别器【英文标题】:disable pinch recognizer when 1 finger is lifted on the screen 【发布时间】:2012-01-22 00:42:54 【问题描述】:我有一个 2d 地图,用户可以使用手势识别器进行缩放和平移。虽然它有效,但我希望用户在抬起 1 根手指后立即开始平移。不幸的是,在文档中它说:
当两个手指时手势结束 (UIGestureRecognizerStateEnded) 从视野中抬起。
这是假装我马上从捏缩放到平移。我能做些什么来解决这个问题?
【问题讨论】:
【参考方案1】:这是可能的,而且很简单!它涉及成为您的手势识别器的代表。似乎没有人知道的东西存在。在我的视图控制器子类中,我声明两者都符合协议 <UIGestureRecognizerDelegate>
和两个 ivars:
UIPinchGestureRecognizer *myPinchGR;
UIPanGestureRecognizer *myPanGR;
这些 ivars 是在加载时实例化的。注意将 self 设置为委托。
-(void)viewDidLoad
[super viewDidLoad];
myPanGR = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panTarget:)];
myPanGR.delegate = self;
[self.view addGestureRecognizer:myPanGR];
myPinchGR = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinchTarget:)];
myPinchGR.delegate = self;
[self.view addGestureRecognizer:myPinchGR];
UIGestureRecognizer
发出的委托调用之一是shouldRecognizeSimultaneouslyWithGestureRecognizer:
,如果我有两个以上的手势识别器,那么这个函数必须包含一些逻辑。但由于只有两个,我可以直接返回YES
。
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
return YES;
现在您必须在您的操作方法中包含一点(非常少)额外的逻辑来筛选适当的条件。
-(void)panTarget:(UIPanGestureRecognizer *)panGR
if (panGR.numberOfTouches > 1) return;
NSLog(@"panny");
-(void)pinchTarget:(UIPinchGestureRecognizer *)pinchGR
if (pinchGR.numberOfTouches < 2) return;
NSLog(@"pinchy");
运行此代码查看日志。你会看到当你移动一根手指时你会看到“panny”当你放下第二根手指时你会看到“pinchy”,然后来回移动。
【讨论】:
【参考方案2】:在手势处理方法中使用此代码。
if (gesture.numberOfTouches != 2)
// code here to end pinching
当用户在两根手指捏合的同时抬起手指时,将立即调用手势处理方法。
【讨论】:
以上是关于当 1 根手指在屏幕上抬起时禁用捏合识别器的主要内容,如果未能解决你的问题,请参考以下文章