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

Styling the Navigation Bar Code Challenge 2 of 3

Hello I'm a little bit stuck, the question says, Now add a line to set the background of the nav bar using the UIImage variable named 'backgroundImage'. Use UIBarMetricsDefault for the 'forBarMetrics' parameter Here is how I answered it.

#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:[UIImage imageNamed:backgroundImage]forBarMetrics:UIBarMetricsDefault]
    return YES;
}

@end

But I get this error, Bummer! There is a compiler error. Please click on preview to view your syntax errors!

looking at preview it says,

cannot initialize a parameter of type 'NSString *' with an lvalue of type 'UIImage *'
                [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:backgroundImage]forBarMetrics:UIBarMetricsDefault]
                                                                                     ^~~~~~~~~~~~~~~
note: passing argument to parameter 'name' here
+ (UIImage *)imageNamed:(NSString *)name;
                                    ^
1 error generated.

Does anyone have any pointers?

Solved should be

[[UINavigationBar appearance] setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];

rather than

[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:backgroundImage]forBarMetrics:UIBarMetricsDefault];

1 Answer