structs in Mutable containers
structs in Mutable containers
- Subject: structs in Mutable containers
- From: "Christian Giordano" <email@hidden>
- Date: Tue, 16 Sep 2008 10:18:16 +0100
Hi guys, I'm finding myself trying to add to mutable containers like
NSMutableDictionary or NSMutableArray instead of NSObjects subclasses,
just structs. For instance in a NSMutableDictionary the key was an
integer defined with #define. In this case I sort it with:
... forKey:[[NSNumber alloc] initWithInt:BAND_RED]];
Not a really elegant solution but I can understand that those
containers require pointers.
Now I need to create a NSMutableArray of CGPoint, how can I make it
became a pointer?
... addObject:CGPointMake(x,y)];
returns indeed "error: incopatible type for argument 1 of 'addObject:'
Is there a more elegant way to use structs as key or as mutable
container's items?
Thanks a lot, chr
_______________________________________________
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