I have the following function
I'm trying to pass an array of double values to the function above, but how do i access each element in the arrays from within Objective C, i'm not too familiar with Arrays in Xcode.
Any help?
Thanks,
Walter
setChartData:
- (void)setChartData:(B4IAray *)xValues :(B4IArray *)yValues{
for (int i = 0; i < xValues.Lenght; i++){
''''How do i get each element of the xValues array and the yValues Array
''' xValues[i] doesn't work
}
}
I'm trying to pass an array of double values to the function above, but how do i access each element in the arrays from within Objective C, i'm not too familiar with Arrays in Xcode.
Any help?
Thanks,
Walter