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
supportedFunctionalitymethods to check.Declaration
Objective-C
CBLCameraConnectionWarningTypeLowerThanExpectedFunctionalitySwift
case lowerThanExpectedFunctionality = 0 -
The camera supports clock sync, but attempting to do so during connection failed.
Declaration
Objective-C
CBLCameraConnectionWarningTypeClockSyncFailedSwift
case clockSyncFailed = 1 -
The camera doesn’t support clock sync.
Declaration
Objective-C
CBLCameraConnectionWarningTypeClockSyncNotSupportedSwift
case clockSyncNotSupported = 2 -
The connection succeeded, but more features will be available if the camera’s firmware is updated.
Declaration
Objective-C
CBLCameraConnectionWarningTypeFirmwareUpdateRecommendedSwift
case firmwareUpdateRecommended = 3