Possible Duplicate:
What’s the best way to put a c-struct in an NSArray?
I need to create an array of structures, such as:
typedef struct
{
int fill;
BOOL busy;
} MapCellST;
How can I add instances of this structure in NSMutableArray and how I can extract copies of the structure and work with its properties later?