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