本文主要是介绍环信push隐藏tabBar,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在push单聊页面的时候,有时需要隐藏tabBar
使用
self.tabBarController.tabBar.hidden = YES;
后viewcontroller下部会有残留
解决方法
在push代码前后分别加上
self.hidesBottomBarWhenPushed = YES;[self.navigationController pushViewController:chatController animated:YES];self.hidesBottomBarWhenPushed = NO;
就可以解决
这篇关于环信push隐藏tabBar的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!