I just can`t put any title on navigationItem.
self.navigationItem.title = @"My Account";
I don`t see any deprecation warning, anyone knows something about it?
THanks,
Found a way:
[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor],UITextAttributeTextColor,
[UIColor whiteColor], UITextAttributeTextShadowColor,
[UIFont fontWithName:@"HelveticaNeue-Bold" size:16.0], UITextAttributeFont, nil]];
self.navigationItem.title = @"My Account";
You need to set TextAttributes or won't work.