Intercepting pan gestures over a UIScrollView breaks scrolling

后端 未结 3 1462
说谎
说谎 2020-12-13 12:48

I have a vertically-scrolling UIScrollView. I want to also handle horizontal pans on it, while allowing the default vertical scroll behavior. I\'ve put a transp

相关标签:
3条回答
  • 2020-12-13 13:24

    OK, I figured it out. I needed to do 2 things to make this work:

    1) Attach my own pan recognizer to the scroll view itself, not to another view on top of it.

    2) This UIGestureRecognizerDelegate method prevents the goofy behavior that happens when both the default scrollview and my own one are invoked simultaneously.

    -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
        return YES;
    }
    
    0 讨论(0)
  • 2020-12-13 13:24

    I had the same problem to solve and I did this:

    1) Attach my own pan recognizer to the scroll view.

    2) Return YES on: – gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:

    This will allow both gestures to work. So what that means is that on vertical scroll, both your panGesture delegate and scrollView Delegate will be fired. If it is a horizontal scroll, it will only call your panGesture delegate.

    3) in my panGesture delegate, detect if it is a horizontal scroll, if it is not, ignore.

    0 讨论(0)
  • 2020-12-13 13:26

    Swift answer:

    let scrollViewPanGesture = UIPanGestureRecognizer(target: self, action: #selector(onPan(_:)))
    scrollViewPanGesture.delegate = self
    scrollView.addGestureRecognizer(scrollViewPanGesture)
    
    extension ViewController: UIGestureRecognizerDelegate {
        func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
            return true
        }
    }
    
    0 讨论(0)
提交回复
热议问题