RutgerB
Apr 1, 2009, 09:47 AM
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:
@interface GameLogic : UIViewController {
int board[4];
}
@property int board[4];
And then in the .m file:
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
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:
@interface GameLogic : UIViewController {
int board[4];
}
@property int board[4];
And then in the .m file:
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
