Access modal view controller parent

后端 未结 6 1209
傲寒
傲寒 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 05:05

    You can access parent by calling:

    self.presentingViewController
    

    As per apple documentation:

    The view controller that presented this view controller (or its farthest ancestor.)

提交回复
热议问题