Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmariayounes
6,704 PointsChallenge 3 : Now we want to change the color of the text of our navigation bar buttons to white.
What's wrong with the third UINavigationBar appearance line?
import "AppDelegate.h"
@implementation AppDelegate
-
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Customize the nav bar UIImage *backgroundImage = [UIImage imageNamed:@"navBarBackground"]; [[UINavigationBar appearance] setBarTintColor:[UIColor redColor]]; [[UINavigationBar appearance] setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault]; [[UINavigationBar appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,nil]];
return YES; }
@end
3 Answers
mariayounes
6,704 PointsYes, this worked. Thanks for your help.
David Collins
6,643 PointsReplace it with this
[[UINavigationBar appearance]setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
UITextAttributeTextColor is deprecated.
mariayounes
6,704 PointsHi, the posted answer above did not work. I am repasting the original code with error to make it clearer. In the original code, the third line is not working.
-
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Customize the nav bar UIImage *backgroundImage = [UIImage imageNamed:@"navBarBackground"]; [[UINavigationBar appearance] setBarTintColor:[UIColor redColor]]; [[UINavigationBar appearance] setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault]; [[UINavigationBar appearance] setTextTitleAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,nil]];
return YES; }
David Collins
6,643 PointsSorry, I didn't read the question properly.
To set the Nav Bar buttons to White use the following code.
[[UINavigationBar appearance]setTintColor:[UIColor whiteColor]];
You don't need to set the TitleTextAttributes for the Challenge