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 trialEgor Bakulin
547 PointsWhere is the problem ?
HI i got this code in challenge but it shoos that the value your in incorrect ? I tried different ways but it still dont work ?
Where i s the problem?!
NSDictionary *album =@{@"title" :@"Abbey Road",@"artist":@"The Beatles"}; NSMutableDictionary *albumMutable =[NSMutableDictionary dictionaryWithDictionary:album]; [albumMutable setObject:@1969 forKey:@"year"];
2 Answers
Robert Bojor
Courses Plus Student 29,439 PointsHi Egor,
The correct method to call is setValue:forKey: in order to add the new value to the mutable array. Also the challenge said to add the key and value as NSString, you forgot the " around 1969.
The code that passes the challenge is below:
NSDictionary *album =@{@"title" :@"Abbey Road",@"artist":@"The Beatles"};
NSDictionary *albumMutable = [NSMutableDictionary dictionaryWithDictionary:album];
[albumMutable setValue:@"1969" forKey:@"year"];
Egor Bakulin
547 PointsThanks a lot :)