当 NavigationController 弹出视图回到所述 ViewController 时,UITabBar 消失

UITabBar disappears when NavigationController pop the view back to the said ViewController

我在 UIViewController 上有一个 UITabBar,它是从 Interface Builder 连接的,它工作正常,直到我有一个按钮将另一个 ViewController 推到屏幕上(例如:登录屏幕)通过 NavigationController。

弹出另一个ViewController后,屏幕回到原来的ViewController,但TabBar消失了。我怎样才能解决这个问题?谢谢

-(void)viewWillAppear:(BOOL)animated{

  [self.tabBarController.tabBar setHidden:NO];
}

在弹出的控制器中使用这个