2019-08-08

2019-08-08  本文已影响0人  Stephen_Huang

在TabBar的日常使用过程中,往往会出现跳转,在跳转的过程中需要隐藏,返回的时候需要显示,代码如下

ViewController  *vc = [[ViewController alloc]init];
self.hidesBottomBarWhenPushed = YES;
 [self.navigationController pushViewController:vc animated:YES];
self.hidesBottomBarWhenPushed = NO;

如果是多个子页面跳转,在每次push之前都需要加上

self.hidesBottomBarWhenPushed = YES;
上一篇 下一篇

猜你喜欢

热点阅读