CBLCameraConnectionWarningType
Objective-C
enum CBLCameraConnectionWarningType : NSUInteger {}
Swift
enum ConnectionWarningType : UInt, @unchecked Sendable
Non-fatal warning types that can occur during connection.
-
The camera has lower than expected functionality. Use the
supportedFunctionality
methods to check.Declaration
Objective-C
CBLCameraConnectionWarningTypeLowerThanExpectedFunctionality
Swift
case lowerThanExpectedFunctionality = 0
-
The camera supports clock sync, but attempting to do so during connection failed.
Declaration
Objective-C
CBLCameraConnectionWarningTypeClockSyncFailed
Swift
case clockSyncFailed = 1
-
The camera doesn’t support clock sync.
Declaration
Objective-C
CBLCameraConnectionWarningTypeClockSyncNotSupported
Swift
case clockSyncNotSupported = 2
-
The connection succeeded, but more features will be available if the camera’s firmware is updated.
Declaration
Objective-C
CBLCameraConnectionWarningTypeFirmwareUpdateRecommended
Swift
case firmwareUpdateRecommended = 3