I would like to be able to pop multiple views from a UITableViewController stack. For example in the Apple DrillDownSave example, when viewing Level 3 to go back to Level 1 or
Thank you Giao that did it. I changed my code to:
NSArray *allViewControllers = self.navigationController.viewControllers; NSInteger n = [allViewControllers count]; [self.navigationController popToViewController: [allViewControllers objectAtIndex: (n-3)] animated: YES];
and it works perfectly.