在屏幕上抬起1个手指时禁用捏合识别器

时间:2012-01-22 00:42:55

标签: ios ios5 uigesturerecognizer

我有一张2D地图,用户可以使用手势识别器进行缩放和平移。虽然它有效,但我希望用户一旦手指抬起后立即开始平移。不幸的是,在文档中它说:

  

手指结束时手势结束(UIGestureRecognizerStateEnded)   从视野中抬起。

这假装我从捏缩放到pan平移。我该怎么做才能解决这个问题?

2 个答案:

答案 0 :(得分:5)

这是可能的,也很简单!它涉及成为你的手势识别器的代表。似乎没有人知道存在的东西。在我的视图控制器子类中,我声明它们都符合协议<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”,当你放下第二根手指时,你会看到“嘶哑”,来回。

答案 1 :(得分:0)

在手势处理方法中使用此代码。

if (gesture.numberOfTouches != 2) { // code here to end pinching }

当用户用手指捏住手指时,将立即调用手势处理方法。