Hi
I have a class called GameLogic and I want it to have an instance variable that is a 2D array of integers.
So I use this code:
In the .h file:
And then in the .m file:
This gives a lot of errors..
So I want to know how to add a 2D array as an instance variable to a class.
Thanks
Rutger
I have a class called GameLogic and I want it to have an instance variable that is a 2D array of integers.
So I use this code:
In the .h file:
Code:
@interface GameLogic : UIViewController {
int board[4];
}
@property int board[4];
And then in the .m file:
Code:
synthesize board[4][4];
This gives a lot of errors..
So I want to know how to add a 2D array as an instance variable to a class.
Thanks
Rutger