kSITIndicationActions
Objective-C
enum kSITIndicationActions : NSInteger {}
Swift
enum kSITIndicationActions : Int, @unchecked Sendable
The type of action the user should perform in order to arrive to the destination.
-
Calculating directions…
Declaration
Objective-C
kSITCalculating
Swift
case sitCalculating = 0
-
invalid action
Declaration
Objective-C
kSITInvalidAction
Swift
case sitInvalidAction = 1
-
the user needs to turn
Declaration
Objective-C
kSITTurn
Swift
case sitTurn = 2
-
the user needs to keep the same direction
Declaration
Objective-C
kSITGoAhead
Swift
case sitGoAhead = 3
-
the user needs to change floor
Declaration
Objective-C
kSITChangeFloor
Swift
case sitChangeFloor = 4
-
the user needs to pass through something
Declaration
Objective-C
kSITPassThrough
Swift
case sitPassThrough = 5
-
the user has arrived to the destination
Declaration
Objective-C
kSITEnd
Swift
case sitEnd = 6