Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customizing "More" Tab Bar

Tags:

iphone

I am using a tab bar (UITabBarController) on my app and I wish to customize the appearance of the table that appears when you click the more button.

My app customized with a background image on every page. But image is not displaying when i click more button.

Any ideas?

like image 914
Tariq Avatar asked Nov 18 '09 06:11

Tariq


People also ask

How do I add more tabs to my tab bar controller?

To add a tab, first drag a new View Controller object to the storybard. Next control-drag from the tab bar controller to new view controller and select view controllers under Relationship Segue . Your tab bar controller will update with a new tab.

What is tab bar?

Tabs organize and allow navigation between groups of content that are related and at the same level of hierarchy. The Tab Bar contains the Tab Scroller and Tab components.


1 Answers

If you're actually using UINavigationController embedded within a UITabBarController then the more item is a UINavigationController which exists as a property of your UITabBarController with the name moreNavigationController. You can manipulate it in methods of your UITabBarController just as you can any other UINavigationController.

HTH, Pedro :)

like image 180
Pedro Avatar answered Oct 06 '22 19:10

Pedro