UINavigationViewController

UINavigationViewController

使用Navigation View Controller,我可以给出“垂直覆盖”过渡样式的动画。但是,在使用Page View Controller复制该代码时遇到了麻烦。故事板上提供的唯一选项是“滚动”和“页面卷曲”。有办法以编程方式执行此操作吗?

最佳答案

它看起来有些棘手,但应该可以使用:

创建一个UIViewController,它将是一个容器控制器。在需要的地方添加UIPageControl。然后以编程方式将UINavigationViewController添加为容器的子级,并将其视图添加到视图层次结构中。您可以使用主情节提要的InstantiateViewControllerWithIdentifier:,并且如果您使用的是AutoLayout,请不要忘记为其设置约束。当用户在UINavigationViewController中导航时,请在容器与UINavigationViewController或UINavigationViewController的parentViewController属性之间使用委托来更改UIPageControl。

UIPageViewController最好只做一件事情。大多数时候,我更喜欢使用自定义容器控制器而不是使用它。

10-06 09:34