I am trying to set up a Navigation View where a user can enter in settings. Once a setting is finalized in the 3rd level (after a button press outside of the navigation bar), I would like to have the Navigation View popped back to the root. How can I do this?
+3
A:
Use [UINavigationController popToRootViewControllerAnimated:animated];
, where animated
is a BOOL.
Ben Gottlieb
2010-04-13 17:46:39
Awesome, Thanks!
Alavoil
2010-04-14 00:03:24