I wonder what method in Appdelgate get called after other than “didUpdateToLocation”
for example, would the method:
didFinishLaunchingWithOptions
applicationDidEnterBackground
applicationDidBecomeActive
get called when there is a significant change location update event.
You’re thinking of Core Location and the “significant change location update event” you are looking for can be found in CLLocationManagerDelegate.
Maybe the
locationManager:didUpdateToLocation:fromLocation:delegate method is what you are looking for?