(Swift) Unwind segue when multiple view controllers lead to same view?

萝らか妹 提交于 2019-11-30 02:09:20

The unwind segue process will generally determine the previous UIViewController instance automatically. The exact process is described in this Tech Note from Apple, but in summary:

Starting from the view controller that initiated the unwind segue the search order is as follows:

  1. The next view controller in the responder chain is sent a viewControllerForUnwindSegueAction:fromViewController:withSender: message. For a view controller presented modally, this will be the view controller that called presentViewController:animated:completion:. Otherwise, the parentViewController.

    The default implementation searches the receiver's childViewControllers array for a view controller that wants to handle the unwind action. If none of the receiver's child view controllers want to handle the unwind action, the receiver checks whether it wants to handle the unwind action and returns self if it does. In both cases, the canPerformUnwindSegueAction:fromViewController:withSender: method is used to determine if a given view controller wants to handle the unwind action.

  2. If no view controller is returned from viewControllerForUnwindSegueAction:fromViewController:withSender: in step one, the search repeats from the next view controller in the responder chain.

So, the precise process will depend on how you presented view controller C - for example, via a modal presentation segue or a push segue on a UINavigationController but as long as both B and D implement the unwind action you should be good.

If you have any custom logic and want to invoke the unwind segue programmatically to different view controllers, here is how:

  1. Add unwindFromCViewController to both BViewController and DBViewController:

    BViewController.swift

    class BViewController : UIViewController {
        @IBAction func unwindFromCViewController(segue:UIStoryboardSegue) {
        }
    }
    

    DViewController.swift

    class DViewController : UIViewController {
        @IBAction func unwindFromCViewController(segue:UIStoryboardSegue) {
        }
    }
    
  2. In your storyboard, create this segue and give it a identifier, and link it to the action you defined above unwindFromCViewController:

        

        

  1. Invoke the unwind segue from code:

    self.performSegueWithIdentifier("unwindFromCViewControllerSugueId", sender: self)
    

With that, you can unwind to a previous view regardless where it is coming from.

I would simply call in code popViewController:animated to go to the presenting controller if you pushed it on the navigation stack, or dismissViewController:animated if it was presented modally.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!