CameraExposureCompensationSetting

public protocol CameraExposureCompensationSetting : AnyObject

Setting to configure camera exposure compensation.

  • Tells if a setting value has been changed and is waiting for change confirmation.

    Declaration

    Swift

    var updating: Bool { get }
  • Supported exposure compensation values.

    An empty set means that the whole setting is currently unsupported.

    Declaration

    Swift

    var supportedValues: Set<CameraEvCompensation> { get }
  • Exposure compensation value. Value should be considered meaningless in case the set of supportedValues is empty. Value can only be changed to one of the value supportedValues

    Declaration

    Swift

    var value: CameraEvCompensation { get set }