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.
- Is there any way to relaunch or activate application in terminated state if enter into the region.