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 trialBonbon Lang-es
Courses Plus Student 2,040 PointsWhen to use alloc/init in NSMutableDictionary
I noticed Doug declared NSMutableDictionary as
NSMutableDictionary *mutableBook = [NSMutableDictionary dictionaryWithDictionary:book];
instead of
NSMutableDictionary *mutableBook = [[NSMutableDictionary alloc] initWithDictionary:book];
When is the right time to use the first one, and the second one?
1 Answer
Vittorio Somaschini
33,371 PointsHello !
They should be the same.
The first way is quicker, but for example, when you want to just create a dictionary without assign values to it you can you the second way you have listed.
Bonbon Lang-es
Courses Plus Student 2,040 PointsBonbon Lang-es
Courses Plus Student 2,040 Pointsoh alright. thanks for clearing it up!