Skip to content

Instantly share code, notes, and snippets.

@ryanisnhp
Created June 25, 2020 11:51
Show Gist options
  • Save ryanisnhp/dad5435c9e3c40723395df79bf5a196b to your computer and use it in GitHub Desktop.
Save ryanisnhp/dad5435c9e3c40723395df79bf5a196b to your computer and use it in GitHub Desktop.
func locationManagerDidChangeAuthorization(_ manager: CLLocationManager) {
let accuracyAuthorization = manager.accuracyAuthorization
switch accuracyAuthorization {
case .fullAccuracy:
break
case .reducedAccuracy:
break
default:
break
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment