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 = 1000

    Swift

    case noWDW = 1000
  • There is someone nearby driving the wrong way

    Declaration

    Objective-C

    WDWEventThereIsWDW = 1001

    Swift

    case thereIsWDW = 1001
  • You are driving the wrong way

    Declaration

    Objective-C

    WDWEventIAmWDW

    Swift

    case iAmWDW = 1002