Im trying to access these values from array storing float:
color_Array = @[@[@96.0f,@178.0f,@228.0f]];
i need to get the first value of the inner first array and i tried :
float *first = [color_Array objectAtIndex:[indexPath.row][0]];
Im just getting an error : expected identifier
Any suggestions ?