Same problem to me
You can re-write UINavigationController push function
// fix: sometimes push and then popback no tabbar error (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated {
if (self.viewControllers.count == 1) {
viewController.hidesBottomBarWhenPushed = YES;
} else {
viewController.hidesBottomBarWhenPushed = NO;
}
[super pushViewController:viewController animated:animated];
}
Topic:
UI Frameworks
SubTopic:
UIKit
Tags: