UIPageViewController setViewControllers没有显示动画

时间:2016-06-10 15:30:21

标签: ios objective-c iphone xcode uipageviewcontroller

我创建了UIPageViewController并加载了页面。一切正常。我在每个页面上都有下一个按钮。如果用户单击页面上的“下一步”按钮,则需要以编程方式导航到下一页。 我的问题是,即使我为animated:YES设置setViewControllers,它也不会在导航到下一页时显示动画。应用程序正确显示下一页但没有动画。

我使用下面的代码导航

[self.pageViewController setViewControllers:@[viewController]
                                  direction:UIPageViewControllerNavigationDirectionForward
                                   animated:YES
                                 completion:nil];

viewController将包含我想要显示的页面。

任何帮助?

0 个答案:

没有答案