CameraAntiFlickeringMode

@objc(GSCameraAntiFlickeringMode)
public enum CameraAntiFlickeringMode : Int, CustomStringConvertible

Camera anti-flickering modes.

  • off

    Anti-flickering is off.

    Declaration

    Swift

    case off
  • Auto detect anti-flickering.

    Declaration

    Swift

    case automatic
  • Force the exposure time to be an integer multiple of 10ms.

    Declaration

    Swift

    @objc(GSCameraAntiFlickeringMode50Hz)
    case mode50Hz
  • Force the exposure time to be an integer multiple of 8.33ms.

    Declaration

    Swift

    @objc(GSCameraAntiFlickeringMode60Hz)
    case mode60Hz
  • Debug description.

    Declaration

    Swift

    public var description: String { get }