我创建了UIPageViewController并加载了页面。一切正常。我在每个页面上都有下一个按钮。如果用户单击页面上的“下一步”按钮,则需要以编程方式导航到下一页。
我的问题是,即使我为animated:YES
设置setViewControllers
,它也不会在导航到下一页时显示动画。应用程序正确显示下一页但没有动画。
我使用下面的代码导航
[self.pageViewController setViewControllers:@[viewController]
direction:UIPageViewControllerNavigationDirectionForward
animated:YES
completion:nil];
viewController将包含我想要显示的页面。
任何帮助?