Get your own customer support community
 

location caching

the CLLocationManager is caching location so that i show up where i last got a good gps location. you can fix that by ignoring CLLocation updates that are older than a certain time:

NSTimeInterval howRecent = [newLocation.timestamp timeIntervalSinceNow];
if(abs(howRecent) > 5.0){
return;
}
 
sad I’m frustrated
Inappropriate?
1 person has this question

User_default_medium