I'm working on serializing a class that supports NSCoding. I've setup encodeWithCoder and initWithCoder, and all the standard Objective C data types work fine.
What I'm struggling with is how to encode a few simple C arrays. For example:
int bonusGrid[5];
int scoreGrid[10][10];
int solutionGrid[10][10];
int tileGrid[10][10];
Short of breaking them up and encoding each int one-by-one, I'm not sure how to deal with them. Is there a "standard" way to handle C arrays?
Thanks!