注册

单聊界面下面油黑边



屏幕快照_2016-03-03_15.57_.00_.png


在这个页面之前我使用了toolbar 但是上个页面我已经隐藏了 不知道这个黑边是从哪儿来的 
 
已邀请:
- (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);}
加到你的聊天页面。把你的设置注释掉。
用toolBar的vc里面push到下一级的vc2时设置下hidesBottomBarWhenPushed属性就可以隐藏toolBar了

要回复问题请先登录注册