我试图让平移手势垃圾邮件在平移时不起作用,而只是在平移完成后才播放一次功能,我在网上看了都没找到,但是找不到一种方法。有人有解决方案吗?

当前代码如下:

UIPanGestureRecognizer *panRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget: self  action:@selector(didPan:)];
self.mapView.gestureRecognizers = @[panRecognizer];

- (void) didPan:(UIPanGestureRecognizer*) gestureRecognizer
{
    NSLog(@"DID PAN");
}

最佳答案

- (void)panGestureDetected:(UIPanGestureRecognizer*)panGesture {

    if(panGesture.state == UIGestureRecognizerStateEnded){
        //do whatever
    }
}

关于ios - iOS平移手势,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25373310/

10-13 07:02