![]() |
MSSImageScanner 4.29.0
The MSSImageScanner SDK provides a library to scan QR codes and CrontoSign images
|
#import <QRCodeScannerSDKScannerDelegate.h>
Instance Methods | |
(void) | - qrCodeScannerSDKController:didScan:codeType: |
(void) | - qrCodeScannerSDKControllerDidCancel: |
(void) | - qrCodeScannerSDKController:didReceive: |
Protocol definition to manage callback for result scanned, canceling and receive errors
- (void) qrCodeScannerSDKController: | (UIViewController *) | controller | |
didReceive: | (NSError *) | error | |
Protocol ScannerDelegate method called when error has occured
controller | An object pointer to current QRCodeScannerSDKViewController sender |
error | pointer to a NSError object. This object will be filled in case an error happened. The error can contain one of the following error codes (see QRCodeScannerSDKErrorCodes.h):
|
- (void) qrCodeScannerSDKController: | (UIViewController *) | controller | |
didScan: | (NSString *) | result | |
codeType: | (CodeType) | codeType | |
Protocol ScannerDelegate method called when result is decoded
controller | An object pointer to current QRCodeScannerSDKViewController sender |
result | The string decoded as NSString * |
codeType | The type of image scanned. Could be
|
- (void) qrCodeScannerSDKControllerDidCancel: | (UIViewController *) | controller |
Protocol ScannerDelegate method called when the user touch on cancel button.
controller | An object pointer to current QRCodeScannerSDKViewController sender |