UIPageViewController仅向前方向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIPageViewController仅向前方向相关的知识,希望对你有一定的参考价值。
目标是创建只能向前导航的UIPageViewController。我正在使用数据源来提供UIPageViewController的内容。方向设置为UIPageViewControllerNavigationDirectionForward,过渡样式为UIPageViewControllerTransitionStyleScroll。
执行
- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerAfterViewController:(UIViewController *)viewController
{
// returns the next view controller
}
返回下一个视图控制器,但以下内容应确保不可能向后导航
- (UIViewController *)pageViewController:(UIPageViewController *)pageViewController viewControllerBeforeViewController:(UIViewController *)viewController
{
return nil;
}
返回nil应该表示无法进行导航(如文档中所述)。但是,我总是可以向后滚动一页。假设我有10页,我可以向前滚动所有页面,但在任何页面上我都可以向后滚动1页。 (例如:在第5页,我可以返回第4页,在第8页,我可以返回第7页,依此类推。)
我知道我可以通过不使用数据源并使用setViewControllers:direction:animated:completion:方法来避免这种情况,但是我想了解为什么我的尝试失败了。
这是将pageViewController的过渡样式设置为滚动时得到的行为-我不确定为什么,但是这与将滚动视图插入到层次结构中的某个地方有关(我可以看到分配了它如果我在打开乐器的情况下运行了我的项目)。如果转换是“页面卷曲”,那么如果返回nil,则不会显示任何先前的页面。
所以,我想除非您要切换到Page Curl动画,否则您将无法使用setViewControllers:direction:animated:completion:。
这是一个简单的解决方案,只需在协议中将isLeftScrollEnabled默认值设置为false即可:UIPageViewController with configurable scroll directions
以上是关于UIPageViewController仅向前方向的主要内容,如果未能解决你的问题,请参考以下文章
仅在 uiPageViewController 中禁用临时向前滑动
图像的 UIPageViewController 如何在方向改变时保持图像的纵横比?
如何使用按钮在 UIPageViewController 中向前和向后导航?