如何在展开segue中添加标识符 - Swift

时间:2014-10-24 16:57:05

标签: ios swift

 @IBAction func unwindOtherVw (seque: UIStoryboardSegue) {
        println("the objectfromOtherView is \(objectFromOtherView!)")
    }

我使用prepareForSeque方法从另一个ViewController传递一个对象(NSManaged),并在故事板中退出目标控制器中的上述代码。一切正常,但如何在展开segue中添加标识符,以便prepareForSegue可以使用seque.indentifier == ______

1 个答案:

答案 0 :(得分:7)

您应该能够在左侧组件的树视图中看到展开segue。您可以选择它并在属性检查器中添加标识符。

例如:

enter image description here