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!
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 trial
Boon Kiat Seah
66,664 PointsRibbit Styling the Navigation Bar Code Challenge 1
this was the question :
Using the UINavigationBar's appearance proxy, set the background color of the navigation bars to [UIColor redColor].
this was what i did:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Customize the nav bar
UIImage *backgroundImage = [UIImage imageNamed:@"navBarBackground"];
[[UINavigationBar appearance] setBackgroundColor:[UIColor redColor]];
return YES;
}
i couldn't get the correct answer. What was wrong?
2 Answers

Boon Kiat Seah
66,664 PointsThis problem was solved by checking back to the apple documents, the correct property to call is :
[[UINavigationBar appearance] setBarTintColor:[UIColor redColor]];

Stefan Buttigieg
10,065 PointsKeep up the great work Boon :)!