ios 环信push隐藏tabBar

在push单聊页面的时候,有时需要隐藏tabBar
使用

self.tabBarController.tabBar.hidden = YES;

后viewcontroller下部会有残留
解决方法
在push代码前后分别加上

 self.hidesBottomBarWhenPushed = YES;
    [self.navigationController pushViewController:chatController animated:YES];
    self.hidesBottomBarWhenPushed = NO;

就可以解决

你可能感兴趣的:(ios 环信push隐藏tabBar)