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

Challenge problem, Question

it says, Let's add the year of the album to the 'albumMutable' variable. Where the key is a NSString 'year' and the value is also a NSString '1969'.

so I have,<p>[albumMutable setObject:@1969 forKey:@"year"];</p> which i believe is correct but I am getting the message "The year set is not the correct value.

Whats the problem that I am not seeing?

Thanks

2 Answers

Stone Preston
Stone Preston
42,016 Points

the year needs to be a string, not an NSNumber. try using @"1969" instead of @1969

Thanks, that was the problem,which I ended up figuring out. Although in the video he didn't use the " " and it seemed to work.