Access modal view controller parent

后端 未结 6 1217
傲寒
傲寒 2021-02-01 04:05

I\'m presenting a ViewController modally. How can I access the parent view controller ?

My architecture is TabBarController=>VC1=>VC2=>VC3=>MVC1, and I want to reach VC3

6条回答
  •  臣服心动
    2021-02-01 04:47

    Addition to Vibhor Goyal - Sometimes, self.presentingViewController registers as NavigationController. Therefore try:

    if let vc = self.presentingViewController.childViewControllers.last as? YourViewController {
    // do stuff here
    }
    

提交回复
热议问题