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

Bonbon Lang-es
PLUS
Bonbon Lang-es
Courses Plus Student 2,040 Points

When 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
Vittorio Somaschini
33,371 Points

Hello !

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.