Skip to content

Instantly share code, notes, and snippets.

@Juanpe
Last active December 9, 2018 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Juanpe/502a8d0459ec9c9d97cb5f0a60464330 to your computer and use it in GitHub Desktop.
Save Juanpe/502a8d0459ec9c9d97cb5f0a60464330 to your computer and use it in GitHub Desktop.
protocol LocationProvider {
var isUserAuthorized: Bool { get }
func requestWhenInUseAuthorization()
func requestLocation()
}
extension CLLocationManager: LocationProvider {
var isUserAuthorized: Bool {
return CLLocationManager.authorizationStatus() == .authorizedWhenInUse
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment