This is better:
viewController.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:viewController animated:YES];
You have to set hidesBottomBarWhenPushed = YES on the controller you are going to push into the view…
This is better:
viewController.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:viewController animated:YES];
You have to set hidesBottomBarWhenPushed = YES on the controller you are going to push into the view…