Is this possible to activate app in terminate state if user enter into any region - iOS

49 Views Asked by At
  • 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.
0

There are 0 best solutions below