I got a viewController which inherits from UIPageViewController ( @interface PageScrollViewController : UIPageViewController ) Now I\'
viewController
UIPageViewController
@interface PageScrollViewController : UIPageViewController
Or you can cast in your PagingVC To disable paging:
self.delegate = nil; self.dataSource = nil;
And for enable it again:
self.delegate = self; self.dataSource = self;