I have a custom object with two 2D arrays as follows:
float a[5][5];
float b[5][10];
And I want to encode this object:
- (void)encodeWithCoder:(NSCoder *)coder
{
// Encode a
// Encode b
}
How can I encode and decode these 2D arrays? I couldn't find an appropriate method to do this operation. Thanks in Advance,