-1

我想在我的拆分视图控制器中有 UIPageViewController。所以我创建了 UIPageViewController 并替换了我的详细视图控制器。

但现在的问题是我可以移动到下一页但不能移动到前一页。当我在纵向模式下使用拆分视图时,当我尝试移至上一页时会出现主 vc。在横向模式下没有响应。

任何解决方案或样品将不胜感激。

我已按照此链接创建 UIPageViewCntroller http://www.techotopia.com/index.php/An_Example_iOS_5_iPhone_UIPageViewController_Application

提前致谢

4

2 回答 2

0

您可以通过执行禁用拆分视图控制器中的滑动

splitViewController.presentsWithGesture = NO;
于 2012-08-30T15:14:44.537 回答
0

我得到它的工作如下,

- (BOOL)splitViewController:(UISplitViewController *)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation

现在我的主视图将始终在纵向模式下可见。

于 2012-09-09T05:22:39.467 回答