UITabBarController Modify [More ...] Appearance
- by Mark
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.