如何以编程方式设置segue

时间:2015-05-19 07:15:46

标签: ios swift uiviewcontroller uicontainerview

我正在使用swift开发一个iOS应用程序,我使用了UIContainerView。我已将UIViewController的segue设置为嵌入UIContainerView

现在,我需要在UIViewController点击时更改此UIButton。那可能吗?如果是这样,它是如何实现的?

提前谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用segueWithIdentifier:source:destination:performHandler:方法以编程方式创建segue。执行处理程序应该完成在源视图控制器和目标视图控制器之间转换所需的所有工作。然后,您可以使用performSegueWithIdentifier:sender:

UIViewController方法以编程方式启动它