Re: Re: newbie question
Re: Re: newbie question
- Subject: Re: Re: newbie question
- From: "Shawn Erickson" <email@hidden>
- Date: Fri, 10 Nov 2006 14:38:23 -0800
On 11/10/06, Stephen Deken <email@hidden> wrote:
Saying this:
NSMutableDictionary *m = [NSMutableDictionary dictionaryWithCapacity:1];
is equivalent to this:
NSMutableDictionary *m = [NSMutableDictionary alloc];
[m initWithCapacity:1];
[m autorelease];
...logically it is closer to the following...
NSMutableDictionary *m = [NSMutableDictionary alloc];
m = [m initWithCapacity:1];
m = [m autorelease];
- Shawn
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden