topgun
topgun

Reputation: 2573

Best way to remove all the Viewcontroller from navigation controller stack

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

Answers (1)

iDev
iDev

Reputation: 23278

Use [[self navigationController] popToRootViewControllerAnimated:YES];

It should move to the rootviewcontroller immediately.

Upvotes: 8

Related Questions