I have an array of locations
NSArray *locations = [[NSArray alloc]initWithObjects:loc1, loc2, loc3, loc4, loc5, loc6, loc7, loc8, loc9, nil];
I iterate through the array and store the different distances from my current location to loc1, loc2 and so on in another array, and sort them from nearest to furthest. That works like a charm.
However, I need to associate the distance with the name of the location. Ex: If loc5 is the nearest place, that should be on the top of the list. I know the names of the different locations, I just need to associate them somehow.
Any suggestions?
EDIT:
Taking your advice into consideration, I figured that I could do something like this:
I have an array with all the stored distances, let's call the array a.
NSMutableDictionary *dic = [[NSMutableDictionary alloc]initWithObjects:locations forKeys:a];
NSArray *sortedArray = [a sortedArrayUsingSelector:@selector(compare:)];
for(int i = 0; i <[sortedArray count]; i++){
CLLocation *loc = [dic valueForKey:[sortedArray objectAtIndex:i]];
NSLog(@"Lat: %f , Lng: %f" , loc.coordinate.latitude , loc.coordinate.longitude);
}
This way I will get the latitude and longitude for the different distances, which I can check against my locally stored coordinates. However this gives me an error saying:
-[NSCFNumber length]: unrecognized selector sent to instance 0x1891f0 * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFNumber length]: unrecognized selector sent to instance 0x1891f0'
And it points me to the line
CLLocation *loc = [dic valueForKey:[sortedArray objectAtIndex:i]];
Thread 1: Program received signal: "SIGABRT".
Any idea how I can fix this?
loc1,loc2,loc3, etc.? – GarlicFries Aug 8 '11 at 12:16