Hi All,
in my
Code:
- (void) locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation {
i do some stuff and i istance an mkreversegecoder retrieving city.
Code:
self.geoCoder = [[[MKReverseGeocoder alloc] initWithCoordinate:newLocation.coordinate] autorelease];
geoCoder.delegate = self;
[geoCoder start];
Which is the best way to schedule this lookup every 61 seconds, like request of Google Maps Term?