Im using -startMonitoringSignificantLocationChanges
in my application.
Application when in background
- (void) locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
method called. I want to call API in didUpdateToLocation(when application in background). When location significant change above method called. In that method i called my API. All this happen in background and all are works well. I want to know is it ok? I didn't have good idea about apple documentation. I think this method apple wont reject. Any one please give me some idea.
Thanks