I program for iOS and use ARC.
I am trying to use the c-array property as a property, but it reports an error.
@property (strong, nonatomic)NSString *mappingTable[70][254];
Error "Property cannot have array or function type NSString *[70][254]" . "Property cannot have array or function type NSString *[70][254]" How can I solve this problem? How to declare a c-array property as a property?
Note:
This is a two-dimensional array, I think it is much easier to use a c-array, so I did not use NSArray for it.
source share