Bindings and C Array
Bindings and C Array
- Subject: Bindings and C Array
- From: Etienne De Sloover <email@hidden>
- Date: Tue, 12 Dec 2006 16:31:54 +0100
Hi,
I am still trying to learn Cocoa.
This is my first post on the list.
if I have a class like:
Stuff : NSObject {
...
int thing [ 150 ];
...
}
can I use the bindings with "thing"?
Or maybe I would better write:
Stuff : NSObject {
...
int thing000;
int thing001;
...
int thing148;
int thing149;
...
}
Or even
Stuff : NSObject {
...
NSMutableArray *thing;
...
}
Advices welcome.
Regards,
Etienne De Sloover
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden