UIPageViewController returns no Gesture Recognizers in iOS 6
问题 I am trying to disable the pan gesture recognizer for a UIPageViewController. On iOS 5 I can loop through them and disable them. for (UIGestureRecognizer* recognizer in self.pageViewController.gestureRecognizers) { if ([recognizer isKindOfClass:[UIPanGestureRecognizer class]]) { recognizer.enabled = NO; } } On iOS 6 using UIPageViewControllerTransitionStyleScroll there are no gesture recognizers returned by the Page View Controller. Clarification This can be boiled down to: self