在TabBar的日常使用过程中,往往会出现跳转,在跳转的过程中需要隐藏,返回的时候需要显示,代码如下
ViewController *vc = [[ViewController alloc]init];
self.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:vc animated:YES];
self.hidesBottomBarWhenPushed = NO;
如果是多个子页面跳转,在每次push之前都需要加上
self.hidesBottomBarWhenPushed = YES;
网友评论