Can i pop to Specific ViewController?

后端 未结 16 1892
我寻月下人不归
我寻月下人不归 2020-11-28 05:35

I am using navigation based application. I push First ViewController to Second ViewController and from Second ViewController to Third ViewController. Now I want to pop from

16条回答
  •  失恋的感觉
    2020-11-28 06:16

    Updated for Swift 3:

    used below simple code, for pop to specific view controller;

     for vc in self.navigationController!.viewControllers as Array {
              if vc.isKind(of: YourViewControllerName) {
                   self.navigationController!.popToViewController(vc, animated: true)
                   break
              }
        }
    

提交回复
热议问题