2

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

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

4

1 回答 1

7

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

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

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

在此处输入图像描述

于 2012-12-10T12:05:35.097 回答