CLActivityType
public enum CLActivityType : String, CustomDebugStringConvertible, CustomStringConvertible
The type of user activity associated with the location updates. Apple Documentation
-
The location is not associated with a specific activity.
Declaration
Swift
case other = "Other"
-
The location is associated with automotive navigation.
Declaration
Swift
case automotiveNavigation = "Automotive Navigation"
-
The location is associated with fitness activities such as walking or running.
Declaration
Swift
case fitness = "Fitness"
-
The location is associated with navigation that is not automotive.
Declaration
Swift
case otherNavigation = "Other Navigation"
-
A user-friendly description of the activity type.
Declaration
Swift
public var description: String { get }
-
A debug-friendly description of the activity type.
Declaration
Swift
public var debugDescription: String { get }