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

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

What does this error mean?

expected ']' nil];

^

note: expanded from macro 'nil' #define nil NULL

                       ^

note: expanded from macro 'NULL'

define NULL __null

                         ^

1 error generated.

Here is my code.

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

NSLog(@"album %@", album);

2 Answers

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

Okay, I got rid of the error when I put a space in front of the nil, but i'm getting a message that says: Bummer! Your 'album' dictionary doesn't have any values in it. What do I do?