How to hide parent tabbar when pushing controller in navigationController

22,422

Solution 1

After spending hours and posting a question here I found that the solution to this problem is adding the following line after the instantiation of ArticleController.

articleController.hidesBottomBarWhenPushed = YES;

Solution 2

If you prefer storyboard configuration over coding there is a toggle for that. Just go destinationViewController > Attribute Inspector:

enter image description here

Solution 3

A very simple solution:

 destinationViewController.hidesBottomBarWhenPushed = YES;

In your case:

 articleController.hidesBottomBarWhenPushed = YES;

Hope this helps!

Solution 4

You can add below code in the view controller, which you are pushing.

-(BOOL)hidesBottomBarWhenPushed
{ 
     return YES;
}

This will hide the tabbar in the pushed view controller only and as you pop the view controller tabbar remains unhide in rest all view controllers.

Swift version (3.x and above)

override var hidesBottomBarWhenPushed: Bool {
    get {
        return navigationController?.topViewController == self
    }
    set {
        super.hidesBottomBarWhenPushed = newValue
    }
}

Thanks

Solution 5

You can simple hide parent tabbar through storyboard .

Select viewcontroller > Attribute Inspector > check Hide Bottom Bar on Push

Share:
22,422
Yannis
Author by

Yannis

Updated on February 09, 2021

Comments

  • Yannis
    Yannis about 3 years

    I have an application with a tab bar controller and each view contains a navigation controller. My MainWindow looks as follows: Image here http://www.freeimagehosting.net/image.php?7bc867a594.png

    Everything works fine as it is but I noticed a problem when pushing a details view to the navigation controller. In the didSelectRowAtIndexPath for a tableviewcontroller that belongs to the tab bar controller (the one called Latest in the image) I am doing this:

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {
        ArticleViewController *articleController = [[ArticleViewController alloc] initWithNibName:@"ArticleView" bundle:nil];
    
        [self.navigationController pushViewController:articleController animated:YES];
    
        [articleController release];
        articleController = nil;
    }
    

    The ArticleViewController has its own tabbar because it needs to display different things. The problem is that when I push the ArticleViewController into the navigationController I see both tabbars at the bottom of the view. Is there any way I can solve this problem?

    Thanks in advance