Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my app I have a tab bar. And in some views I as well have a toolbar. So when I come to those views with a toolbar it looks ugly - two bars at the bottom of the view. I thought that it would be a best solution to hide a tab bar when entering those particular views. But I just couldn't figure out how to do it in a right way. I tried to set UITabBarController's tabBar hidden property to YES, but it didn't work. And I as well tried to do the following thing in whatever view I am:

self.hidesBottomBarWhenPushed = YES;

But it didn't work as well.

What is the right solution to this situation? I don't want to have 2 bars at any view.

Thank you.

share|improve this question

5 Answers

up vote 46 down vote accepted

You have to use set the hidesBottomBarWhenPushed property to YES on the controller that you are pushing and NOT to the UITabBarController.

otherController.hidesBottomBarWhenPushed = YES;
[navigationController pushViewController: otherController animated: TRUE];

Or you can set the property when you first initialize the controller you want to push.

share|improve this answer
I have three view controllers that the UITabBarController can present. On the second view controller, I put self.hidesBottomBarWhenPushed = YES in initWithNibName:bundle:. When I tested tapping into the second view controller, the UITabBar was still there. – JoJo Sep 27 '11 at 22:10

Answer here

share|improve this answer
Holy shit, this was well hidden! Thanks! – pt2ph8 Jul 6 '11 at 20:03

A supplement for easy copy paste to Panagiotis Korros' answer:

ControllerToShow *controller = [[ControllerToShow alloc] init];
controller.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:controller animated:YES];
[controller release];
share|improve this answer

I too struggled with this for a while. Hiding the tab bar is one step in the right direction, but leaves a black rectangle behind. The trick is to resize the layer that backs the UIViewController's view.

I have written a small demo here with a solution:

https://github.com/tciuro/FullScreenWithTabBar

I hope this helps!

share|improve this answer
This solution works fine to me, thank you titusmagnus – avmauricio Jun 15 '12 at 17:51
Classy, thanks. – Danyal Aytekin Apr 9 at 19:42

Interface builder has checkbox for view controller embedded in tab bar - Hides bottom bar on push. In easy cases no need to do it through code now.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.