Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITabBarController hide More navigationbar

When there are 5 or more viewcontrollers for a UITabBarController, by default, the More option will be available.

When you select those 'more' viewcontrollers, the viewcontroller presented will have a Navigation Bar and a back button.

Is there a way to hide this navigation bar?

like image 227
TreeTree Avatar asked Oct 28 '13 08:10

TreeTree


1 Answers

Modified the code below for the UITabBarController, set:

[self.moreNavigationController.navigationBar setHidden:YES];
like image 128
TreeTree Avatar answered Oct 23 '22 19:10

TreeTree