Setting hidesBottomBarWhenPushed leaves bottom bar

2020-01-31 04:15发布

问题:

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.

回答1:

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];


回答2:

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];

}



回答3:

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).



回答4:

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.



回答5:

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!



回答6:

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

- (BOOL) hidesBottomBarWhenPushed
{
    return YES;
}


回答7:

swift:

self.hidesBottomBarWhenPushed = true
self.performSegueWithIdentifier("viewcontroller_details", sender: nil)
self.hidesBottomBarWhenPushed = false


回答8:

In the view controller that appears after the one with the toolbar is popped, try this magic:

- (void)viewWillAppear:(BOOL)animated {
    [self.navigationController setToolbarHidden:YES animated:YES];
}


回答9:

Swift 3: From code, you have to set pushedController.hidesBottomBarWhenPushed to true.

Storyboard: Select the pushed controller, go to Attribute Inspector, select "Hide Bottom Bar on Push" option under View Controller.