In the hierarchy of the navigation manager, you need to work a little.
to navigate the navigation controller itself to the parent navigation controller use
self.tabBarController.navigationController
Use this code
PUSH : [self.tabBarController.navigationController pushViewController:objNav animated:YES]; POP : [self.tabBarController.navigationController popViewControllerAnimated:YES];
Thanks,
source share