SBSDKUIGenericDocumentRecognizerTextConfiguration
@interface SBSDKUIGenericDocumentRecognizerTextConfiguration
: SBSDKUIEnableCameraTextConfiguration
Configuration for the textual contents of the generic document recognizer screen.
-
String being displayed on the flash button.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *flashButtonTitle;
Swift
var flashButtonTitle: String? { get set }
-
String being displayed on the cancel button.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *cancelButtonTitle;
Swift
var cancelButtonTitle: String? { get set }
-
String being displayed on the clear button.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *clearButtonTitle;
Swift
var clearButtonTitle: String? { get set }
-
String being displayed on the view results button.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *viewResultsButtonTitle;
Swift
var viewResultsButtonTitle: String? { get set }
-
String used for displaying amount of detected fields. Use %li for number formatting symbol.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *fieldsCountText;
Swift
var fieldsCountText: String? { get set }
-
String that shows average confidence value of scanned card. Use %li as number formatting symbol.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *confidenceValue;
Swift
var confidenceValue: String? { get set }
-
String that asks user to scan back side of a card.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *scanBackSideTitle;
Swift
var scanBackSideTitle: String? { get set }
-
String that asks user to scan front side of a card.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *scanFrontSideTitle;
Swift
var scanFrontSideTitle: String? { get set }
-
String that asks user to start scanning a card.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *startScanningTitle;
Swift
var startScanningTitle: String? { get set }
-
String that notifies that nothing was scanned yet.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *noDataTitle;
Swift
var noDataTitle: String? { get set }
-
String that notifies that both sides of card are scanned.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *scannedEverythingTitle;
Swift
var scannedEverythingTitle: String? { get set }
-
String being displayed for empty values.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *emptyValueTitle;
Swift
var emptyValueTitle: String? { get set }
-
A mutable dictionary of user defined display strings for generic document types. Filled with default values. Each key is equal to a document types
normalizedName
property. The values contain the user defined display texts for the corresponding document types.Declaration
Objective-C
@property (nonatomic, strong, nonnull) NSMutableDictionary<NSString *, NSString *> *documentTypeDisplayTexts;
Swift
var documentTypeDisplayTexts: NSMutableDictionary { get set }
-
A mutable dictionary of user defined display strings for generic document field types. Filled with default values. Each key is equal to a fields
normalizedName
property. The values contain the user defined display texts for the corresponding fields.Declaration
Objective-C
@property (nonatomic, strong, nonnull) NSMutableDictionary<NSString *, NSString *> *fieldTypeDisplayTexts;
Swift
var fieldTypeDisplayTexts: NSMutableDictionary { get set }