如何使用页面控件简单地链接两个视图控制器。 (Swift iOS)

时间:2015-07-11 13:06:01

标签: ios swift

我有两个视图控制器,其id为firstController和secondController。我希望能够使用页面控制器在它们之间滑动,但我不知道如何做到这一点。我已经查看了教程,但它们是用于在应用程序开始时制作一些教程,而不是实际的应用程序。

那么我如何将它们链接起来以便我可以在它们之间滑动?

2 个答案:

答案 0 :(得分:1)

以下是您需要的代码。我也搜索了很久才找到这个。它工作得非常好。也许你想改变" as?" to" as!"强制降低目的地ViewControllers,但如果你以后计划一个segue,就不要这样做。

parent

您只需删除vc3和vc4即可。你只需要注意每个vc3和vc4都被删除,并且你写了#34;数组(数:2," ...

答案 1 :(得分:0)

使用手势识别器查看用户何时刷过方向...

不让我发布图片,所以看看here

然后使用类似的东西更改视图控制器......

let secondViewController = self.storyboard.instantiateViewControllerWithIdentifier("SecondViewController") as SecondViewController

self.navigationController.pushViewController(secondViewController, animated: true)


你也可以使用segue。 (performSegueWithIdentifier方法)