- 實(shí)現(xiàn)導(dǎo)航欄push時(shí)隱藏標(biāo)簽欄
抽出一個(gè)導(dǎo)航控制器類復(fù)寫push方法
[objc] view plain copy
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if (self.viewControllers.count > 0) {
viewController.hidesBottomBarWhenPushed = YES;
}
[super pushViewController:viewController animated:animated];
}