Does anyone know what the new Exit icon is used for when editing storyboards using Xcode 4.5?

后端 未结 3 1029
无人及你
无人及你 2020-12-02 06:37

Right-clicking the Exit icon yields an empty window. Can\'t Ctrl-drag a connection to any IB elements or corresponding source files. Docs give no love. Doesn\'t appear in ni

3条回答
  •  北海茫月
    2020-12-02 07:26

    As addition to Eric answer here is how it works with swift:

    The function you add to the destination controller looks like:

    @IBAction func backFromOtherController(segue: UIStoryboardSegue) {
        NSLog("I'm back from other controller!")
    }
    

提交回复
热议问题