CBLCameraConnectionState
Objective-C
enum CBLCameraConnectionState : NSUInteger {}
Swift
enum ConnectionState : UInt, @unchecked Sendable
Camera connection states.
-
The camera is not connected.
Declaration
Objective-C
CBLCameraConnectionStateNotConnected = 0Swift
case notConnected = 0 -
The camera is in the process of connecting.
Declaration
Objective-C
CBLCameraConnectionStateConnectionInProgressSwift
case connectionInProgress = 1 -
The camera is connected, and commands can be issued to it.
Declaration
Objective-C
CBLCameraConnectionStateConnectedSwift
case connected = 2 -
The camera is in the process of disconnecting.
Declaration
Objective-C
CBLCameraConnectionStateDisconnectionInProgressSwift
case disconnectionInProgress = 3