Floats are C-types and so you can't use the typical Objective C property thing to access them directly.
Best thing to do is create an "accessor" function that gives class B access to the pointer for the very first array entry "itemsPosition". E.G. "itemsPosition[0][0]"
In class A's .h file:
float itemsPosition[20][20];
- (float *) getItemsPosition;
and in the .m file:
- (float *) getItemsPosition
{
// return the location of the first item in the itemsPosition
// multidimensional array, a.k.a. itemsPosition[0][0]
return( &itemsPosition[0][0] );
}
And in class B, since you know the size of this multidimensional array is 20 x 20, you can step to the location of the next array entry pretty easily:
float * itemsPosition = [classA getItemsPosition];
for(int index = 0; index < 20; index++)
{
// this takes us to to the start of itemPosition[index]
float * itemsPositionAIndex = itemsPosition+(index*20);
for( int index2 = 0; index2 < 20; index2++)
{
float aFloat = *(itemsPositionAIndex+index2);
NSLog( @"float %d + %d is %4.2f", index, index2, aFloat);
}
}
}
Let me know if it would be useful for me to put a sample Xcode project up for you somewhere.