Reputation: 25978
I have implemented geofencing functionality in my App.
I get notified when user enter into particular region with below method
func locationManager(_ manager: CLLocationManager, didEnterRegion region: CLRegion) { if region is CLCircularRegion { handleEvent(forRegion: region) } }
Above method is calling even in terminated state.
Upvotes: 0
Views: 44