3

I have a tabbar with a transparent background. One of the tabbar items load a view with a UITableView in it. Is it possible to have that tableview to go "under" the tabbar? That is, have the tableview to fill the whole screen size.

Thanks

The iOSDev
  • 5,237
  • 7
  • 41
  • 78
BlackMouse
  • 4,442
  • 6
  • 38
  • 65
  • I have had no luck with this so far, so I ended up hiding the built-in tab bar and faking tabs with a custom `UIView` with buttons. Still, I'm curious if there is a less hacky way to achieve that. – Lvsti May 07 '12 at 21:11

1 Answers1

1

At the moment you push a viewController on a navigation stack, you can use this:

[controller setHidesBottomBarWhenPushed:YES];
[self.navigationController pushViewController:controller];

Or look at this topic for manual hiding/showing it

How to hide uitabbarcontroller

Community
  • 1
  • 1
Wesley
  • 2,190
  • 17
  • 26