SBSDKDocumentScannerStatusTextConfiguration

@interface SBSDKDocumentScannerStatusTextConfiguration : NSObject

Wraps the texts being displayed as the detection status.

  • The text being displayed on the user-guidance label, when the scanners energy saver is activated.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintEnergySavingActive;

    Swift

    var textHintEnergySavingActive: String? { get set }
  • The text being displayed on the user-guidance label, when no document was detected.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintNothingDetected;

    Swift

    var textHintNothingDetected: String? { get set }
  • The text being displayed on the user-guidance label, when no document was detected because of image noise.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintTooNoisy;

    Swift

    var textHintTooNoisy: String? { get set }
  • The text being displayed on the user-guidance label, when no document was detected because the image is too dark.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintTooDark;

    Swift

    var textHintTooDark: String? { get set }
  • The text being displayed on the user-guidance label, when a document was detected, but the perspective distortion is too strong.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintBadAngles;

    Swift

    var textHintBadAngles: String? { get set }
  • The text being displayed on the user-guidance label, when a document was detected, but the aspect ratio of the document is inverse to the cameras aspect ratio.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintBadAspectRatio;

    Swift

    var textHintBadAspectRatio: String? { get set }
  • The text being displayed on the user-guidance label, when a document was detected, but the documents area is too small compared to the image area.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintTooSmall;

    Swift

    var textHintTooSmall: String? { get set }
  • The text being displayed on the user-guidance label, when a document was detected, but its center is too far away from the image center.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintOffCenter;

    Swift

    var textHintOffCenter: String? { get set }
  • The text being displayed on the user-guidance label, when a document was detected with good conditions. Used with autoShutterEnabled set to YES.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintOKAutoShutter;

    Swift

    var textHintOKAutoShutter: String? { get set }
  • The text being displayed on the user-guidance label, when a document was detected with good conditions. Used with autoShutterEnabled set to NO.

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *textHintOKManualScan;

    Swift

    var textHintOKManualScan: String? { get set }