Alok
Alok

Reputation: 25978

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

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

Answers (0)

Related Questions