CBLPropertyCommonValueFocusMode

Objective-C

enum CBLPropertyCommonValueFocusMode : CBLPropertyCommonValue {}

Swift

enum PropertyCommonValueFocusMode : PropertyCommonValue, @unchecked Sendable

Focus mode common values.

  • The value is equivalent to the manual focus mode.

    Declaration

    Objective-C

    CBLPropertyCommonValueFocusModeManual = 150

    Swift

    case manual = 150
  • The value is equivalent to the single drive focus mode (once focus is acquired, the camera stops focusing).

    Declaration

    Objective-C

    CBLPropertyCommonValueFocusModeSingleDrive

    Swift

    case singleDrive = 151
  • The value is equivalent to the continuous drive focus mode (the camera continually performs autofocus until told to stop).

    Declaration

    Objective-C

    CBLPropertyCommonValueFocusModeContinuousDrive

    Swift

    case continuousDrive = 152