How to notify user when he enters a CLLocation?
问题 SITUATION: I followed the following tutorial: https://www.raywenderlich.com/95014/geofencing-ios-swift PROBLEM: The following functions never get triggered: AppDelegate.swift func locationManager(manager: CLLocationManager, didEnterRegion region: CLRegion) { if region is CLCircularRegion { handleRegionEvent(region) } } func locationManager(manager: CLLocationManager, didExitRegion region: CLRegion) { if region is CLCircularRegion { handleRegionEvent(region) } } func handleRegionEvent(region: