I have developer an walk app that can record distance, on ios7,ios8
,the distance almost fine although some time not accurate,but on ios9.0,
the distance often too larger, so I check
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)
Locations method
, and find some time timestamp of new location early than some previous location, it means location from callBack are not sorted by timestamp, why is that and how deal with it,
Thanks in advance