美文网首页
TarBarController 自定义tabbar push隐

TarBarController 自定义tabbar push隐

作者: Coder亚瑟士 | 来源:发表于2015-12-29 14:08 被阅读286次

//1.设置

self.tabBarController.tabBar.hidden=YES;

//2.如果在push跳转时需要隐藏tabBar,设置

self.hidesBottomBarWhenPushed=YES;

NewViewController *new=[[NewViewController alloc]init];

[self.navigationController pushViewController:new animated:YES];

//并在push后设置

self.hidesBottomBarWhenPushed=NO;

//back回来,tabBar会恢复正常显示。

相关文章

网友评论

      本文标题:TarBarController 自定义tabbar push隐

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