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 Objective-C Basics (Retired) Foundation Framework NSDictionary

NNSDictionary album

Can't find good answer,alway's say your dictionary doesn't have any values In Xcode it work well .....

NSDictionary *album2 =[[NSDictionary alloc]initWithObjectsAndKeys:@"Title",@"Abbey Road",@"artist",@"The Beatles",nil];

nsdictionary.mm
NSDictionary *album =[[NSDictionary alloc]initWithObjectsAndKeys:@"Title",@"Abbey Road",@"artist",@"The Beatles",nil];

1 Answer

Hi Francis,

The key/value pairs are stored backwards, just as the init method states ... value (object) first, then the key. So, your code is pretty much what seems sensible - you just need to reverse each pair (and uncaptialize @"title")

NSDictionary *album = [[NSDictionary alloc] initWithObjectsAndKeys:@"Abbey Road", @"title", @"The Beatles", @"artist", nil];

I hope that makes sense!

Steve.