CameraBracketingValue

@objc(GSCameraBracketingPreset)
public enum CameraBracketingValue : Int, CustomStringConvertible, Comparable

Bracketing value when photo mode is bracketing.

  • Takes 3 pictures applying, in order, -1 EV, 0 EV and +1 EV exposure compensation values.

    Declaration

    Swift

    @objc(GSCameraBracketingPreset1ev)
    case preset1ev
  • Takes 3 pictures applying, in order, -2 EV, 0 EV and +2 EV exposure compensation values.

    Declaration

    Swift

    @objc(GSCameraBracketingPreset2ev)
    case preset2ev
  • Takes 3 pictures applying, in order, -3 EV, 0 EV and +3 EV exposure compensation values.

    Declaration

    Swift

    @objc(GSCameraBracketingPreset3ev)
    case preset3ev
  • Takes 5 pictures applying, in order, -2 EV, -1 EV, 0 EV, +1 EV, and +2 EV exposure compensation values.

    Declaration

    Swift

    @objc(GSCameraBracketingPreset1ev2ev)
    case preset1ev2ev
  • Takes 5 pictures applying, in order, -3 EV, -1 EV, 0 EV, +1 EV, and +3 EV exposure compensation values.

    Declaration

    Swift

    @objc(GSCameraBracketingPreset1ev3ev)
    case preset1ev3ev
  • Takes 5 pictures applying, in order, -3 EV, -2 EV, 0 EV, +2 EV, and +3 EV exposure compensation values.

    Declaration

    Swift

    @objc(GSCameraBracketingPreset2ev3ev)
    case preset2ev3ev
  • Takes 7 pictures applying, in order, -3 EV, -2 EV, -1 EV, 0 EV, +1 EV, +2 EV, and +3 EV exposure compensation values.

    Declaration

    Swift

    @objc(GSCameraBracketingPreset1ev2ev3ev)
    case preset1ev2ev3ev
  • Debug description.

    Declaration

    Swift

    public var description: String { get }
  • Comparator.

    Declaration

    Swift

    public static func < (lhs: CameraBracketingValue, rhs: CameraBracketingValue) -> Bool
  • Set containing all possible values.

    Declaration

    Swift

    public static let allCases: Set<CameraBracketingValue>