我有一个GetStartedViewController
,它继承自UINavigationController
。
此GetStartedViewController
会打开该应用的教程。
本教程是UIPageViewController
。
问题是在UIPageViewController
中,由于它已经处理了滑动手势,因此无法“向后滑动”到上一个视图。用户唯一的选择是点击导航栏左上角的“后退”按钮。
了解如何实施:
if indexScrolled == -1 {
self.navigationController?.popViewControllerAnimated(true)
}
谢谢:)
答案 0 :(得分:0)
您是否尝试向您的GetStartedViewController
添加滑动手势识别器?
如果gestureShouldStart
index != 0
中返回false