Re: NSDictionary key types
Re: NSDictionary key types
- Subject: Re: NSDictionary key types
- From: David Duncan <email@hidden>
- Date: Thu, 6 Jan 2011 12:54:18 -0800
On Jan 6, 2011, at 12:50 PM, Jon Sigman wrote:
> So are the following two equivalent?
>
> id myKey = [NSNumber numberWithInt:8760];
> if (myObj = [myDict objectForKey:myKey]) {
> . . . do something
> }
>
> and
>
> id myKey = @"8760";
> if (myObj = [myDict objectForKey:myKey]) {
> . . . do something
> }
Only if [[NSNumber numberWithInt:8760] isEqual:@"8760"] which I don't believe to be the case.
--
David Duncan
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden