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 trial

iOS

Boon Kiat Seah
Boon Kiat Seah
66,664 Points

Ribbit 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
Boon Kiat Seah
66,664 Points

This problem was solved by checking back to the apple documents, the correct property to call is :

[[UINavigationBar appearance] setBarTintColor:[UIColor redColor]];

Keep up the great work Boon :)!