Question

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,

Était-ce utile?

La solution

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.

Autres conseils

Updated answer to replace deprecated properties.

[self.navigationController.navigationBar 
    setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
    [UIColor whiteColor],NSForegroundColorAttributeName,
    [UIColor whiteColor], NSShadowAttributeName,
    [UIFont fontWithName:@"HelveticaNeue-Bold" size:16.0], NSFontAttributeName, nil]];

do

self.navigationController.navigationItem.title = @"My Account";
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top