Reputation: 2573
I have some view controller's within the navigation controller stack, hence I want to remove all the view controllers except for parent controller. What is the best way to remove all the view controllers in navigation controller?
Thanks.
Upvotes: 1
Views: 3496
Reputation: 23278
Use [[self navigationController] popToRootViewControllerAnimated:YES];
It should move to the rootviewcontroller
immediately.
Upvotes: 8