I have a navigation controller. I first pushed a VC, then presented 12 modals VC\'s. Now I want to pop to root viewController. How can I do that? Please help me out.
If you have navigation controller and want to enjoy the benefits of popping back multiple levels in a single command, then you should be using pushViewController
(or push segues) not presentViewController
(or modal segues).
As others have pointed out, if you were correcting pushing to the subsequent controllers, then you could pop back via:
[self.navigationController popToRootViewControllerAnimated:YES];