( )viewController
から継承するを取得しました。aを使用すると、スクロールだけでなく全体がブロックされるため、オプションではありません。 UIPageViewController
@interface PageScrollViewController : UIPageViewController
UIPageViewController
UIScrollView
setScrollEnabled:NO
self.view.userInteractionEnabled = NO;
UIView
編集
これはPageScrollViewController : UIPageViewController
クラスにあります:
if ([[notification name] isEqualToString:@"NotificationDisable"]){
NSLog (@"Successfully received the disable notification!");
for (UIGestureRecognizer *recognizer in self.gestureRecognizers) {
recognizer.enabled = NO;
}
}