在push單聊頁(yè)面的時(shí)候,有時(shí)需要隱藏tabBar
使用
self.tabBarController.tabBar.hidden = YES;
后viewcontroller下部會(huì)有殘留
解決方法
在push代碼前后分別加上
self.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:chatController animated:YES];
self.hidesBottomBarWhenPushed = NO;
就可以解決