Xcode 6 Storyboard Unwind Segue with Swift Not Connecting to Exit

前端 未结 11 2009
栀梦
栀梦 2020-12-02 09:20

When trying to connect a Navigation Bar Button to the Exit item of a ViewController in Xcode 6 (not really sure if it\'s an Xcode 6 problem but worth mentioning as it is in

11条回答
  •  眼角桃花
    2020-12-02 09:56

    In Swift 2.3 I found the external name of the parameter must be "withUnwindSegue":

    @IBAction func unwindToThisView(withUnwindSegue unwindSegue: UIStoryboardSegue) {
        ...
    }
    

提交回复
热议问题