CBLVideoTimerType

Objective-C

enum CBLVideoTimerType : NSInteger {}

Swift

enum VideoTimerType : Int, @unchecked Sendable

Video recording timer types.

  • No video timer is currently available.

    Declaration

    Objective-C

    CBLVideoTimerTypeNone

    Swift

    case none = 0
  • The video timer is counting down to zero (i.e., is counting the recording time remaining).

    Declaration

    Objective-C

    CBLVideoTimerTypeCountingDown

    Swift

    case countingDown = 1
  • The video timer is counting up from zero (i.e., is counting the length of the current clip).

    Declaration

    Objective-C

    CBLVideoTimerTypeCountingUp

    Swift

    case countingUp = 2