我需要显示阿拉伯语(从右到左)内容,找不到任何旋转UIPageViewController找到的页面卷曲动画的方法,因为基本上阿拉伯语书籍应该从左到右翻转。
答案 0 :(得分:2)
如果您只支持纵向模式,那么您应该查看UIPageViewController delegate
方法pageViewController:spineLocationForInterfaceOrientation:
并返回UIPageViewControllerSpineLocationMax
。
但是如果您想同时支持横向和纵向,那么您可以保留默认的脊椎位置动画,但提供的页面方向与此请求的方向相反
在: pageViewController:viewControllerBeforeViewController:
返回下一页
并且在: pageViewController:viewControllerAfterViewController
中只返回上一个。