I\'ve got an iPhone application with a UITableView
menu. When a row in the table is selected, the appropriate view controller is pushed onto the application\'s
For the UIViewController that does not need a toolbar when pushed you can consider using either
Implementing the hidesBottomBarWhenPushed method for that UIViewController:
// method to be added to the UIViewController that has no toolbar
- (BOOL) hidesBottomBarWhenPushed {
return YES;
}
Or prior to pushing in the UIViewController, set the value of hidesBottomBarWhenPushed:
viewControllerWithNoToolBar.hidesBottomBarWhenPushed = YES
[self.navigationController pushViewController:viewControllerWithNoToolBar animated:YES];