我想在我的Split视图控制器中安装UIPageViewController。所以我创建了UIPageViewController并替换了我的详细视图控制器。
但现在问题是我可以转到下一页而不是之前的页面。由于我在纵向模式下使用分割视图,当我尝试移动到上一页时,会出现主vc。在横向模式下没有回应。
任何解决方案或样品都将不胜感激。
我已按照此链接创建UIPageViewCntroller http://www.techotopia.com/index.php/An_Example_iOS_5_iPhone_UIPageViewController_Application
先谢谢
答案 0 :(得分:0)
您可以通过执行
来禁用拆分视图控制器中的滑动splitViewController.presentsWithGesture = NO;
答案 1 :(得分:0)
我得到了如下工作,
- (BOOL)splitViewController:(UISplitViewController *)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation
现在我的主视图将始终以人像模式显示。