What's the easiest way to create an array of structs in Cocoa?
|
3
|
|
|
|
|
|
If you want to use an NSArray you'll need to box up your structs. You can use the NSValue class to encode them. Something like this to encode:
And then to get it back out:
|
||
|
|
|
|
Or dynamically allocating:
|
||
|
|
|
If you're okay with a regular old C array:
If you want an NSArray, you'll need a wrapper object. Most primitives use NSNumber, but that might not be applicable to your struct. A wrapper wouldn't be very hard to write, although that kind of defeats the purpose of using a struct! Edit: This is something I haven't done but just thought of. If you think about it, an NSDictionary is basically a struct for objects. Your keys can be the names of the struct components as NSStrings and your values can be of the corresponding data type wrapped in the applicable Cocoa wrapper. Then just put these dictionaries in an NSArray. I guess the gist is that you've got plenty of options. If I were you I'd do some experimenting and see what works best. |
|||
|
|
|
|
Does it need to be a struct? It's generally better to make it an object if you can. Then you can use things like KVC and Bindings with it. |
||
|
