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 Implementing Designs for iPhone Customizing Table View Controllers Styling the Navigation Bar

Ribbit Styling Navigation Bar Challenge 1

'Im stuck on the code challenge "Styling the navigation bar" in the Implementing Designs for iPhone course. The instructions say: "Using the UINavigationBar's appearance proxy, set the background color of the navigation bars to [UIColor redColor]."

My code:

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]]; }

@end

nvm. i got it