工作中用到了自定义tabBar,在其中隐藏掉了系统的tabBar,用view自定义r实现需要的功能。但接下来出现了问题,在我push到子页面的时候就出现了tabBar无法隐藏的问题,搞了半天终于成功隐藏!在网上查了半天,没有一个方法可以实现,本文步骤稍微多了点,但功能是完全实现了,废话少说,直入正题。
1. 首先自定义一个ZYGNavigationController(名字自己起)继承与UINavigationController,ZYGNavigationController.m中拦截系统的push方法,进行重写:
-(void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated{
viewController.hidesBottomBarWhenPushed = YES;
[super pushViewController:viewController animated:animated];
}
-(UIViewController *)popViewControllerAnimated:(BOOL)animated{
return [super popViewControllerAnimated:animated];
}
然后给tabbar添加导航的时候就不能用系统的UINavigationController了,而要用我们自定义的ZYGNavigationController,如下:
for (int i=0; i<images.count; i++) {
Class vcClass = NSClassFromString(viewControllers[i]);
TabBarParentViewController *controller = [[vcClass alloc] init];
ZYGNavigationController *nav = [[ZYGNavigationController alloc] initWithRootViewController:controller];//这个地方本来是UINavigationController
controller.categoryType = categotyArr[i];
[mArr addObject:nav];
}
self.viewControllers = mArr;
2. 在自定义的TabBarController.m里写如下方法:
-(void)setHidesBottomBarWhenPushed:(BOOL)hidesBottomBarWhenPushed{
你自己定义的View.hidden = hidesBottomBarWhenPushed;
}
3. 在你要隐藏tabbar的界面添加如下两个方法:
-(void)viewWillAppear:(BOOL)animated{
self.tabBarController.hidesBottomBarWhenPushed = YES;
}
-(void)viewWillDisappear:(BOOL)animated{
self.tabBarController.hidesBottomBarWhenPushed = NO;
}
做到这一步就完成了,OK,测试一下,perfect!
在第三步中,定义一个父类,让其他的界面都继承自该父类,这样只需要在父类里面写一次这样的方法而不必在每个界面都重写一次。
来源:oschina
链接:https://my.oschina.net/u/2461772/blog/508254