无法通过情节提要创建Unwind Segue Xcode 11

时间:2020-04-02 02:38:09

标签: ios swift iphone xcode storyboard

自从最新的Xcode发布以来,我一直无法将我的视图控制器连接到它的出口,从而无法展开。 (右键单击圆圈并将其拖动到出口图标)

enter image description here

有人知道这是为什么吗?提前致谢。

1 个答案:

答案 0 :(得分:1)

它仍在工作...右键单击或控制+拖动... ..

Before you can begin adding unwind segues in Interface Builder, you
must define at least one unwind action

例如

@IBAction func unwindToMainMenu(sender: UIStoryboardSegue)
{
    let sourceViewController = sender.source
    // Pull any data from the view controller which initiated the unwind segue.
}