You need to use these coordinates to get the CLLocations for the respective coordinates using the following line of code
CLLocation *location1 = [[CLLocation alloc] initWithLatitude:lat1 longitude:long1];CLLocation *location2 = [[CLLocation alloc] initWithLatitude:lat2 longitude:long2];NSLog(@"Distance i meters: %f", [location1 distanceFromLocation:location2]);