CBLVideoTimerValue

Objective-C

@protocol CBLVideoTimerValue <NSObject, NSCopying>

Swift

protocol VideoTimerValue : NSCopying, NSObjectProtocol

A video timer value. Only valid during video recording.

  • The timer type.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CBLVideoTimerType type;

    Swift

    var type: VideoTimerType { get }
  • The current value of the timer. Will be zero if the video timer is invalid.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval value;

    Swift

    var value: TimeInterval { get }