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"

CustomStringConvertible

  • A user-friendly description of the accuracy authorization.

    Declaration

    Swift

    public var description: String { get }

CustomDebugStringConvertible

  • A debug-friendly description of the accuracy authorization.

    Declaration

    Swift

    public var debugDescription: String { get }