I have an NSArray with numbers, and I want to get the value of an array element and assign it to a double. In my attempt at simple casting:
lat = (double)[storesList.latitudes objectAtIndex:i];
I get the error: "Pointer value used where a floating point value was expected."
Please, help!
Thank,
F.
source
share