关闭PageViewController并加载一个新的ViewController

时间:2017-07-13 14:39:05

标签: ios swift uipageviewcontroller

我一直在使用swift和xcode中的pageViewController。我在xcode中使用了默认模板并制作了一个pageViewController应用程序。但现在我想在pageViewController上放置一个按钮,该按钮显示在所有pageViewControllers上,当点击该按钮时,pageViewController被解除,RootViewController屏幕显示回来。 我写过这一行,但这没有任何作用。

self.dismiss(animated: true, completion: nil)

但这没有任何帮助。你能告诉我怎样才能实现这个目标? 谢谢。

2 个答案:

答案 0 :(得分:0)

您应该使用popToRootViewController()。您可以使用一个带有调用此功能的按钮的导航栏,这样无论您当前在哪个视图上,它都会弹出到rootviewcontroller。

答案 1 :(得分:-1)

在这种情况下,您可以使用pageViewController的容器。应该是这样的: enter image description here