UIScrollView cancels UIPageViewController gestures when scrolling

前端 未结 3 599
死守一世寂寞
死守一世寂寞 2021-01-13 14:47

I have a UIPageViewController that handles turning the pages of my \"book\". However, each book page is a ViewController with a UIScrollView

相关标签:
3条回答
  • 2021-01-13 14:48

    I had the same issue and I worked my way around... in my case I have pdf with zooming enabled. So I have for example:

    [scrollView setMaximumZoomScale:6];
    [scrollView setMinimumZoomScale:1];
    

    when I initialize the controller and its scrollView, and just after that and every time I change orientation or page I change the zoom to fit the width of the page, only if the zoom is "far away"

    CGFloat desiredWidth = scrollView.frame.size.width/pdfRect.size.width;
    if (desiredWidth>[self zoomScale]) {
        [scrollView setZoomScale:desiredWidth animated:YES];
    }
    

    I hope it helps

    0 讨论(0)
  • A UIScrollView scroll event will block other UIView animations, so in the case of Twitter, they're probably canceling the scroll a split second before swiping the view. As you've asked in your question:

    "How do I cancel the scrollviews gestures if the UIPageViewController is trying to use the gesture to turn the page by tapping or panning the page to cause the page turn animation?"

    I'll suggest a workaround.

    Instead of relying on the UIPageViewController's inherent UIPanGestureRecognizer, include your own UIPanGestureRecognizer in the page view so that when a pan is detected in the appropriate section of the page and performed in the appropriate direction, that new UIPanGestureRecognizer overrides the UIPageViewController's UIGestureRecognizers and triggers the necessary actions. Specifically, you need to:

    (1) Halt the scrolling animation using

    CGPoint offset = scrollView.contentOffset;
    [scrollView setContentOffset:offset animated:NO];
    

    (2) Turn the page programmatically using

    - (void)setViewControllers:(NSArray *)viewControllers direction:
      (UIPageViewControllerNavigationDirection)direction animated:
      (BOOL)animated completion:(void (^)(BOOL finished))completion;
    

    so that both the scrolling animation is halted and the page flip is completed within one fluid pan gesture.

    0 讨论(0)
  • 2021-01-13 14:58

    UIGestureRecognizer class has possibility to set dependencies on other gesture recognisers by using requireGestureRecognizerToFail: method.
    In your case this method could be used in such way:

    for (UIGestureRecognizer *gestureRecognizer in pageController.gestureRecognizers) {
        for (ViewController *viewController in viewControllers) {
            for (UIGestureRecognizer *gestureRecognizerForFail in viewController.scrollView.gestureRecognizers) {
                [gestureRecognizerForFail requireGestureRecognizerToFail:gestureRecognizer];
            }
        }
    }
    
    0 讨论(0)
提交回复
热议问题