tags:

views:

135

answers:

1

Hello everyone,

I would like to know if there is a way to change the text in the [More ...] tab. With the code below I am able to change the text in the view, however the text in the tab remains the same. Is there a way to access it and change it's appearance.

tabBarController.moreNavigationController.topViewController.navigationItem.title = NSLocalizedString(@"Meer", "");

My second question is about the [Edit] button in the More view. The code below does not work.

tabBarController.moreNavigationController.topViewController.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Wijzigen" style:UIBarButtonItemStyleDone target:nil action:nil];

Does anyone have an idea?

Cheers.

A: 

Hi,

I have answer for your second question.

U can set the property:

tabBarController.customizableViewControllers=nil

I hope the code would fine for you.

Regards Loveesh

Loveesh