创建一个没有附加到任何UI元素的storyboard segue?

时间:2012-12-10 11:42:00

标签: objective-c ios xcode uistoryboard uistoryboardsegue

我正试图从一个不在我的故事板中的UI元素触发故事板segue(在这种情况下,它是一个UIAlertView)。因此,我无法从故事板中的任何现有组件中绘制箭头。

处理这种情况的正确方法是什么?我需要一个带有标识符的segue,以便我可以从相关的UIAlertView按钮调用它。

1 个答案:

答案 0 :(得分:7)

您可以将right click + drag的segue从源控制器添加到Storyboard中的目标控制器。然后只需单击创建的segue并设置标识符。 您可以通过以下方式以编程方式触发segue:

// Note: In this example self is the source controller
// (the controller that holds the segue)
[self performSegueWithIdentifier:@"mySegue" sender:self];

以下是您可以用作参考的屏幕截图:

enter image description here