Oleg Zharsky
Oleg Zharsky

Reputation: 1

IOS bottom tab bar titles

I can't figure out how to change the bottom bar titles on the Tab Bar.

Please see this image: screenshot

Upvotes: 0

Views: 2627

Answers (2)

Peter Sarnowski
Peter Sarnowski

Reputation: 11970

In each view controller that goes into the bottom tabbar, you must specify the tab bar item:

insert this code in your init method, or viewDidLoad method.

UITabBarItem * tabtitle = [[UITabBarItem alloc] initWithTitle: @" YOUR TITLE "
                                                        image: nil //or your image 
                                                          tag: 0];

[self setTabBarItem: tabtitle];
//[tabtitle release]; //release if not using ARC

Upvotes: 0

mbh
mbh

Reputation: 3312

Assuming you meant you cannot figure it out, and you want something like in the image,

tabBarController.tabBarItem.title = @"Your title"

Upvotes: 1

Related Questions