Yes, you can disable the automatic popToRootViewController by implementing the UITabBarControllerDelegate method on your view controller:
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController { if(self.navigationController == viewController) { return NO; } return YES; }
Thanks: Disable the action - debug the user in the scoreboard element to go to the root view controller
Leigh mcculloch
source share