I need something like this:
@property (nonatomic, retain) int field[10][10];
but this code doesn\'t work. How to replace it? I need both se
Write setter and getter
- (int) field:(int)i j:(int)j { return field[i][j]; } - (void)setField:(int)i j:(int)j toValue:(int)value { field[i][j] = value; }