1

I have a UITabBar and a UINavigationBar created in IB, when I launch my application everytime I navigate the UINavigation title change because I'm using

self.title = @"NAME"; 

my problem is that the UITabBarItem will change with the same name at the same time. I want to put a static name only for the UITabBarItem, how to do it in IB or programatically maybe.

Thanks,

ludo
  • 1,479
  • 5
  • 25
  • 50

3 Answers3

1

try returning an explicit tabBarItem for your controller, and set its title yourself.

- (UITabBarItem *) tabBarItem {
    return [[[UITabBarItem alloc] initWithTitle: ...
Ben Gottlieb
  • 85,404
  • 22
  • 176
  • 172
1

I find the solution in this adress Stackoverflow navigationItem Title Sorry I didn't find it before posting my question.

Community
  • 1
  • 1
ludo
  • 1,479
  • 5
  • 25
  • 50
0

try this, in your viewDidLoad

self.tabBarController.navigationItem.title = @"title";
shahil
  • 941
  • 9
  • 20