On Jan 19, 2010, at 2:57 PM, Shawn Rutledge wrote:

I think dictionaryWithCapacity should both alloc and init it, right?

Yes, and it autoreleases it too. :-o That means it'll conveniently be released later on, which is exactly what you're running into. If you want to keep a reference to the dictionary, you should call alloc and init yourself.

Sounds like you need to read over the memory management rules again :) Remember the cardinal rule: The only methods that return references you own and have to release are "alloc", "copy", "mutableCopy", "new", and of course "retain".

—Jens_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to