Skip to content

Instantly share code, notes, and snippets.

@gmertk
Created May 26, 2015 21:21
Show Gist options
  • Save gmertk/dc8dc70986598fc32ed3 to your computer and use it in GitHub Desktop.
Save gmertk/dc8dc70986598fc32ed3 to your computer and use it in GitHub Desktop.
Stop ranging when exiting a CLBeaconRegion
func locationManager(manager: CLLocationManager!, didExitRegion region: CLRegion!) {
if let region = region as? CLBeaconRegion {
manager.stopRangingBeaconsInRegion(region)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment