CBLVideoFormatProperty
Objective-C
@protocol CBLVideoFormatProperty <CBLCameraProperty>
Swift
protocol VideoFormatProperty : CameraProperty
A property that exposes its values as universal video format description values.
-
Returns the current value as a universal video format description value.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) id<CBLVideoFormatPropertyValue> currentVideoFormatValue;Swift
@NSCopying var currentVideoFormatValue: (any VideoFormatPropertyValue)? { get } -
Returns the valid settable values as an array of video format description values.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSArray<id<CBLVideoFormatPropertyValue>> *validSettableVideoFormatValues;Swift
var validSettableVideoFormatValues: [any VideoFormatPropertyValue]? { get }