SBSDKCapturePhotoQualityPrioritization

enum SBSDKCapturePhotoQualityPrioritization : NSUInteger {}

The priorization of still image quality and capturing speed. Has no effect on devices prior to iOS 13.0.

  • Captures a still image at the highest possible speed. The quality of the image may be degraded.

    Declaration

    Objective-C

    SBSDKCapturePhotoQualityPrioritizationSpeed = 1

    Swift

    case speed = 1
  • Balances capturing speed and image quality equally. This is the default value.

    Declaration

    Objective-C

    SBSDKCapturePhotoQualityPrioritizationBalanced = 2

    Swift

    case balanced = 2
  • Captures a still image with the best possible quality in terms of noise, frozen motion and detail in low light. The speed of the capturing might be significantly reduced.

    Declaration

    Objective-C

    SBSDKCapturePhotoQualityPrioritizationQuality = 3

    Swift

    case quality = 3