Skip to content

Instantly share code, notes, and snippets.

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