STScanState
Objective-C
enum STScanState : NSInteger {}
Swift
enum STScanState : Int
The enum represent scan progress on real time from ScanTrust frame processing.
-
< Reading the QR code
Declaration
Objective-C
STScanStateUnreadableSwift
case unreadable = 0 -
< QR code read and processing
Declaration
Objective-C
STScanStateOkSwift
case ok = 1 -
< QR code is small and not big enough
Declaration
Objective-C
STScanStateTooSmallSwift
case tooSmall = 2 -
< QR code is more then big enough
Declaration
Objective-C
STScanStateTooBigSwift
case tooBig = 3 -
< QR code is blurry
Declaration
Objective-C
STScanStateBlurrySwift
case blurry = 4 -
< QR code is not a ScanTrust Code
Declaration
Objective-C
STScanStateNotProprietarySwift
case notProprietary = 5 -
< Secure fingerprint is out side of the frame
Declaration
Objective-C
STScanStateFPNotInFrameSwift
case fpNotInFrame = 6 -
< No Auth code being detected
Declaration
Objective-C
STScanStateNoAuthSwift
case noAuth = 7 -
< Scan is taking too long enable power saving mode
Declaration
Objective-C
STScanStatePowerSavingSwift
case powerSaving = 8 -
< QR code is not in center of the frame
Declaration
Objective-C
STScanStateQRCodeNotInCenterSwift
case qrCodeNotInCenter = 9 -
< Glare has been detected and no QR code found
Declaration
Objective-C
STScanStateGlareDetectedSwift
case glareDetected = 10 -
< ScanTimedOut
Declaration
Objective-C
STScanStateScanTimeOutSwift
case scanTimeOut = 11
STScanState Enumeration Reference