Noob question here.
If I have Class A with an array float itemsPosition[20][20] and I have another class B to access that, how can I do it?
What I usually do it to alloc Class A and access for other objects but in this case, I can’t synthesize float array within Class A.
Any ideas?
You can
@synthesizeanNSValuethat holds a pointer to your array.