I want to be able to change the page's title without affecting the tab bar's title. My current implementation is as follows:
//Setting page and UITabbar title in app delegate
ForYouViewController *fuvc = [[ForYouViewController alloc]init];
fuvc.title = @"Questions";
UITabBarItem *tempTabBarItem1 = [[UITabBarItem alloc]initWithTitle:@"Questions" image:nil tag:QUESTIONTAB_INDEX];
Before clicking on questions tab
//After changing the title's page in view did load of "ForYouViewController"
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Latest";
}
After clicking on questions tab (tab bar title changed)
How can I set the the page title such that it does not alter the tab bar's description?