Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Boyan Angelov
26,485 PointsCan't find syntax error.
I am trying hard to find the error. Here's the code I have so far:
#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] setTintColor:[UIColor whiteColor]];
// Customize the tab bar
NSDictionary *titleTextAttributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil];
[[UITabBarItem appearance] setTitleTextAttributes:[titleTextAttributes forState:UIControlStateNormal]];
return YES;
}
@end
Sometimes I think that these challenges are unnecessarily difficult, we would be able to spot those errors easily in Xcode... Anyways, hope somebody can help :)
4 Answers

Thomas Nilsen
14,957 PointsYou have a few to much of these "[]". Try this instead:
[[UITabBarItem appearance] setTitleTextAttributes:titleTextAttributes forState:UIControlStateNormal];

Thomas Nilsen
14,957 PointsA good tip for these challenges is to actually type them out in xcode, then copy/paste it in

Patrick Donahue
9,523 PointsI think you need to remove the "forState" part in the setTitleTextAttribute statement.

Boyan Angelov
26,485 PointsStill doesn't work..

Patrick Donahue
9,523 PointsOops - i missed that.

Boyan Angelov
26,485 Points:) still thanks for the fast answer
Boyan Angelov
26,485 PointsBoyan Angelov
26,485 PointsOh cool, it works! Thanks Thomas :)