今天遇到一个郁闷的问题(以前是完全没问题的): 视图A
push 视图B
,以前隐藏UITabBarController的tabBar, 我用它的一个属性hidesBottomBarWhenPushed
。 将其设置为YES就可以在下一级隐藏Tabbar,但是pop的时候TabBar不显现了。
【解决办法】
把
self.hidesBottomBarWhenPushed = YES;
中的self
改成你要push进入的那个viewcontroller
LoginViewController *loginVC = [[LoginViewController alloc] init];loginVC.hidesBottomBarWhenPushed = YES;[self.navigationController pushViewController:loginVC animated:YES];复制代码
再一次感谢您花费时间阅读这篇文章!
微博:
博客: