标签:des style blog color io ar sp div on
在pushViewController之前调用:
1 self.hidesBottomBarWhenPushed = YES; 2 ZWMessageViewController *messageController = [[ZWMessageViewController alloc] initWithDict:_dataSource[indexPath.row]]; 3 [self.navigationController pushViewController:messageController animated:YES];
或者是在 - (void)viewWillAppear:(BOOL)animated 中设置
self.hidesBottomBarWhenPushed = YES;
同时在viewWillDisappear调用:
1 - (void)viewWillDisappear:(BOOL)animated { 2 [super viewDidDisappear:animated]; 3 self.hidesBottomBarWhenPushed = NO; // 不设置这个,界面跳转回来的时候,tabbar不能成功显示 4 }
标签:des style blog color io ar sp div on
原文地址:http://www.cnblogs.com/zw-h/p/4035026.html