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
You can access parent by calling:
self.presentingViewController
As per apple documentation:
The view controller that presented this view controller (or its farthest ancestor.)