Skip to content

Instantly share code, notes, and snippets.

@fabiothiroki
Last active October 11, 2017 22:22
Show Gist options
  • Save fabiothiroki/8600d5c398ffa62a031b09c3ceb727e0 to your computer and use it in GitHub Desktop.
Save fabiothiroki/8600d5c398ffa62a031b09c3ceb727e0 to your computer and use it in GitHub Desktop.
LocationManagerProtocol
import CoreLocation
protocol LocationManager {
var delegate: CLLocationManagerDelegate? { get set }
func requestWhenInUseAuthorization()
func requestLocation()
}
extension CLLocationManager: LocationManager {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment