注册

关于推出聊天界面的问题

我push出来聊天界面,但是不显示导航栏,如图1,完了点击图片之后,点击Down之后回来的时候就多出了两个黑条,如图2,我用的就是self.navigationController push出来的,是跟我程序有关吗,有没有遇到过这种问题的,帮帮忙,谢谢
已邀请:
- (void)viewWillAppear:(BOOL)animated
{
 [super viewWillAppear:animated];
 self.tabBarController.tabBar.hidden = YES;
 self.tabBarController.tabBar.bounds = CGRectMake(0, 0, 0, 0);} 
- (void)viewWillDisappear:(BOOL)animated
{
super viewWillDisappear:animated];
 self.tabBarController.tabBar.hidden = NO;
 self.tabBarController.tabBar.bounds = CGRectMake(0, self.view.frame.origin.y - 64, self.view.frame.size.width, 44);}加到聊天页面
是通过点击“私信”那个按钮跳转到聊天界面的……

要回复问题请先登录注册