views:

69

answers:

1

I have a Tab Bar app. The app has 8 UITabBarItems and the More button is added automatically. I want to change the title from More to something else.

I have already tried the following:

tabbarController.moreNavigationController.tabBarItem.title=@"Test";

But it still displays "More". No error. No changes.

How can I change the "More" text to another?

A: 

From the documentation:

"The title and image of system tab bar items cannot be changed."

Eiko
i dont think so. i saw some apps that theirs More buttons title is different. i already changed More buttons image. but i cannot change Title. for image: NSArray *array= tabbarController.tabBar.subviews; UIBarButtonItem *more=[array objectAtIndex:4]; [more setImage:[UIImage imageNamed:@"tabIcon_mais.png"]]; [more setTitle:@"Mais"];// this line doesnt work
tester