I have a UIPageViewController
that handles turning the pages of my \"book\". However, each book page is a ViewController
with a UIScrollView
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 UIGestureRecognizer
s 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.