无法通过 Storyboard 创建 Unwind Segue Xcode 11

Cannot create Unwind Segue Xcode 11 Via Storyboard

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

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

它仍然有效...右键单击或按住 control 并拖动...但是..

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.
}