CLAccuracyAuthorization
public enum CLAccuracyAuthorization : String, CustomDebugStringConvertible, CustomStringConvertible
The accuracy level the app is authorized to use. Apple Documentation
-
The app can access location data with full accuracy.
Declaration
Swift
case fullAccuracy = "Full Accuracy"
-
The app can access location data only with reduced accuracy.
Declaration
Swift
case reducedAccuracy = "Reduced Accuracy"
-
A user-friendly description of the accuracy authorization.
Declaration
Swift
public var description: String { get }
-
A debug-friendly description of the accuracy authorization.
Declaration
Swift
public var debugDescription: String { get }