如何使用UIPinchGestureRecognizer检测或定义捏合手势的方向?

时间:2010-08-24 18:09:27

标签: iphone iphone-sdk-3.0

我正在使用UIPinchGestureRecognizer来检测捏合手势,例如:

- (void) initPinchRecon {
 UIPinchGestureRecognizer *pinchRecognizer = [[[UIPinchGestureRecognizer alloc] 
              initWithTarget:self
              action:@selector(Perform_Pinch:)] autorelease];
 [self addGestureRecognizer:pinchRecognizer];

 [pinchRecognizer setScale:20.0f];
}

- (void) Perform_Pinch:(UIPinchGestureRecognizer*)sender{
 NSLog(@"PINCH");
} 

它可以很好地检测一个简单的捏手势:可以确定(或定义自己)捏手势的角度或方向?,例如,区分水平和垂直捏手势?

由于

1 个答案:

答案 0 :(得分:4)

一个非常简单的解决方案是实现这样的手势处理程序:

-(void)handlePinchGesture:(UIPinchGestureRecognizer *)recognizer {
if (recognizer.state != UIGestureRecognizerStateCancelled) {
    if (recognizer.numberOfTouches == 2) {
        CGPoint firstPoint = [recognizer locationOfTouch:0 inView:recognizer.view];
        CGPoint secondPoint = [recognizer locationOfTouch:1 inView:recognizer.view];

        CGFloat angle = atan2(secondPoint.y - firstPoint.y, secondPoint.x - firstPoint.x);

        // handle the gesture based on the angle (in radians)
    }
}