Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting hidesBottomBarWhenPushed leaves bottom bar missing after View Controller is popped

I have the following setup:

A tab bar app. On one tab there is a navigation controller.

My workflow:

When I push a new viewController onto the navigation controller stack, I set the hidesBottomBarWhenPushed property.

This works great, the tab bar is "pushed" as the new view controller slides in place.

The problem:

When I pop this view controller and the root view controller is once again displayed, however, the tab bar is gone.

The navigation controller has grown to fill the space left by tab bar.

Is there a property I need to set to make the tab bar visible again?


What I have tried:

popping to the root view manually

setting (resetting) the hidesBottomBarWhenPushed for the root view

resizing the root view

resizing the view property of the navigation controller (just leaves a "white space" where the tab bat should be)

What "sorta" worked:

If I set the selected index of the tab bar controller to any other index, the tab bar appears. So I know it is still "around", but this does little to help me.

like image 842
Corey Floyd Avatar asked Jun 24 '09 19:06

Corey Floyd


7 Answers

I had this problem too. I was setting -hidesBottomBarWhenPushed on the wrong view controller.

Wrong (but seems to work until you pop):

self.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:self.anotherViewController animated:animated];

Right:

self.anotherViewController.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:self.anotherViewController animated:animated];
like image 57
Dave Batton Avatar answered Sep 28 '22 10:09

Dave Batton


this is the same problem i had, but i got a solution, try this I found that hiding and then showing the tabbar immediately after the push, solves our problem

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
 NSDictionary *theItem = [items objectAtIndex:indexPath.row];
 DetailController *nextController = [[DetailController alloc] initWithItem:theItem];
 self.hidesBottomBarWhenPushed = YES;
 [self.navigationController pushViewController:nextController animated:YES];
 //
 //[nextController setHidesBottomBarWhenPushed:YES];
 self.hidesBottomBarWhenPushed=NO;

 [nextController release];

}

like image 31
eddy Avatar answered Sep 28 '22 09:09

eddy


If you're using a UINavigationController and looking for a way to just hide the TabBar (BottomBar) in one view controller, place this code in the view controller you'd like to the hide the TabBar for:

- (BOOL)hidesBottomBarWhenPushed {

    return [self.navigationController.visibleViewController isEqual:self]; 
}

Other approaches I tried with just setting the property caused the TabBar to be hidden after pushing a new view controller from the view controller with the hidden TabBar (even after setting the property to NO).

like image 45
brynbodayle Avatar answered Sep 28 '22 09:09

brynbodayle


I do something similar in my app - just calling:

[self.navigationController popToRootViewControllerAnimated:YES];

seems to do the trick and the tab bar is back - admittedly this is in response to a button press rather than the nav bar pop button. I seem to remember it worked fine when using the nav bar back button as well.

Perhaps check you are only setting a single view controller to have the hidesBottomBarWhenPushed property set to YES.

like image 44
Grouchal Avatar answered Sep 28 '22 11:09

Grouchal


In addition to doing this:

[self.navigationController popToRootViewControllerAnimated:YES];

Initially when you do self.hidesBottomBarWhenPushed = YES;

You have to change for viewControllerToBePushed.hidesBottomBarWhenPushed = YES;

That should do the work!

like image 34
oderfla Avatar answered Sep 28 '22 09:09

oderfla


Curious, I never set this value, but override it on the ViewController I want:

- (BOOL) hidesBottomBarWhenPushed
{
    return YES;
}
like image 30
Thomas Decaux Avatar answered Sep 28 '22 10:09

Thomas Decaux


swift:

self.hidesBottomBarWhenPushed = true
self.performSegueWithIdentifier("viewcontroller_details", sender: nil)
self.hidesBottomBarWhenPushed = false
like image 38
William Hu Avatar answered Sep 28 '22 10:09

William Hu