隐藏和显示tabbar

-(void)viewWillDisappear:(BOOL)animated{

    self.tabBarController.tabBar.hidden = NO;

    

}

-(void)viewWillAppear:(BOOL)animated

{

    self.tabBarController.tabBar.hidden = YES;//隐藏tabbar

}

原文地址:https://www.cnblogs.com/-ios/p/4669754.html