On Tue, May 18, 2010 at 12:40 PM, Sai <jche...@gmail.com> wrote: > However, I declare a NSDictionary instance variable in my model object. This > NSDictionary instance > store some data I need. And I will create this NSDictionary instance by > invoking: > [NSDictionary dictionaryWithObjects:names forKeys:keys]
Are you retaining that? - (id)init { if (self = [super init]) { // assuming you have an ivar called "dict", this will lead to the problem you define: dict = [NSDictionary dictionaryWithObjects:names forKeys:keys]; // but this should work: dict = [[NSDictionary dictionaryWithObjects:names forKeys:keys] retain]; } } -- // jack // http://nuthole.com // http://learncocoa.org _______________________________________________ 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