我在UITabBar
上有UIViewController
,从Interface Builder附加,工作正常,直到我有一个按钮通过NavigationController将另一个ViewController推送到屏幕(例如:登录屏幕) 。
弹出另一个ViewController后,屏幕返回到原始ViewController,但TabBar消失了。我怎样才能解决这个问题?感谢。
答案 0 :(得分:1)
-(void)viewWillAppear:(BOOL)animated{
[self.tabBarController.tabBar setHidden:NO];
}
在弹出控制器中使用它