WDWEventType
Objective-C
enum WDWEventType : NSUInteger {}
Swift
enum WDWEventType : UInt, @unchecked Sendable
Enum specifies all the possible WrongwayDriverWarning event types.
-
All clear. No relevant wrong way driving event detected
Declaration
Objective-C
WDWEventNoWDW = 1000Swift
case noWDW = 1000 -
There is someone nearby driving the wrong way
Declaration
Objective-C
WDWEventThereIsWDW = 1001Swift
case thereIsWDW = 1001 -
You are driving the wrong way
Declaration
Objective-C
WDWEventIAmWDWSwift
case iAmWDW = 1002