将按钮连接到导航视图控制器

时间:2016-03-14 13:47:32

标签: ios xcode swift button interface

以下是iOS应用程序中帐户标签的设计。 enter image description here

我想将logOut按钮与登录界面连接起来。 并将编辑界面中的完成按钮与帐户界面连接。

但是当我使用show或model segeue连接它们时,会发生什么! enter image description here

无论如何通过编码连接它们而没有得到这个结果?

你能帮助我吗,我必须做些什么来使它有效?

1 个答案:

答案 0 :(得分:0)

如果它是根视图控制器

,你应该试试这个
self.navigationController?.popToRootViewControllerAnimated(true)

或者如果不是那么

// pops to the 3rd controller in the stack, because indexing starts with 0
navigationController!.popToViewController(navigationController!.viewControllers[2], animated: false)