Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I see that I can remove all of the UIPageViewController gestures, but what if I only want to remove the tap gesture on the edges? And keep the swipe gesture? Is this possible?

Thanks

share|improve this question

1 Answer

up vote 15 down vote accepted

Try looping through pageViewController.gestureRecognizers, disabling any that are tap recognizers:

for (UIGestureRecognizer *recognizer in pageViewController.gestureRecognizers) {
    if ([recognizer isKindOfClass:[UITapGestureRecognizer class]]) {
        recognizer.enabled = NO;
    }
}
share|improve this answer
Note, this only works with UIPageViewControllerTransitionStylePageCurl. – rcw3 Dec 7 '12 at 0:22
It worked for me on iOS 6 with both UIPageViewControllerTransitionStylePageCurl and UIPageViewControllerTransitionStyleScroll – Gustavo Barbosa yesterday

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.