项目中也遇到这个问题了,我后来用PageViewController的viewControllers[0]来进行翻页,就没有这个问题了(http://www.jianshu.com/p/52a393691e77 在这个文章后面我写了具体的处理方法;
pageViewControl中的后翻实现:
UIViewController *pageView = [self.pdfDataSource getAfterPage:self.viewControllers[0]];
if(pageView){
[self setViewControllers:@[pageView]
direction:UIPageViewControllerNavigationDirectionForward
animated:isShowAnimated
completion:^(BOOL finished){}];
}
UIPageViewController缺陷写在前面 本文整理了UIPageViewController在使用中的一些缺陷和bug,结合网上的一些资料提供一个相对全面的总结。文章及代码中如有任何形式的错误、疑问欢迎在留...