如何在没有关联的UI元素的情况下在iOS中创建segue

时间:2015-03-27 05:50:37

标签: ios objective-c iphone xcode swift

我首先加载“ViewController1”。它做了一堆背景管家工作,然后转到“ViewController2”。

要对“ViewController2”执行Segue,我知道的唯一方法是添加一个BUTTON(用户永远不需要查看或使用)然后通过按住控件和该按钮将“segue”添加到“ViewController2”拖动。

我的问题是 - 由于我真的不需要ViewController1中的按钮,我怎样才能创建一个Segue,然后使用 performSegueWithIdentifier(“segue_LoginToStart”,发送者)在代码中执行:无)

How to perform Segue without having an associated UI Element like a Button?

2 个答案:

答案 0 :(得分:13)

步骤-1

- 在故事板中选择你的stoyboard名称(黄色按钮)

第2步

- 按Ctrl + right点击 - segue到目标视图控制器

enter image description here

第3步

- 在属性

中提供seque名称

步骤-4

在您想要的地方调用以下行

 performSegueWithIdentifier("segue_LoginToStart", sender: nil)

答案 1 :(得分:0)

右键单击"黄色按钮"。 (我不知道这个按钮的名称)

enter image description here