I am programming for iOS, and using ARC.
I am trying to use a c-array as property, but it reports error.
@property (strong, nonatomic)NSString *mappingTable[70][254];
The error is "Property cannot have array or function type NSString *[70][254]". How can I solve this problem? How can I declare c-array as property?
Note:
This is a two dimensional array, I think it is much easier to just use c-array, so I didn't use NSArray for it.
NSArrayor declare pure c++ array