美文网首页
2019-08-08

2019-08-08

作者: Stephen_Huang | 来源:发表于2019-08-08 13:59 被阅读0次

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

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

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

self.hidesBottomBarWhenPushed = YES;

相关文章

网友评论

      本文标题:2019-08-08

      本文链接:https://www.haomeiwen.com/subject/zyhxjctx.html