Atalasoft MobileImage API Reference
|
This protocol defines methods that your delegate object should implement to interact with kfxCreditCardCaptureViewController. More...
#import <kfxCreditCardCaptureViewController.h>
Instance Methods | |
(void) | - creditCardCaptureViewController:didExtractCreditCard:error: |
Tells the delegate that the credit card capture is finished and result data is available. More... | |
Instance Methods inherited from <kfxCaptureViewControllerDelegate> | |
(void) | - captureViewControllerDidClose: |
Tells the delegate that the user is going to close capture view controller. More... | |
This protocol defines methods that your delegate object should implement to interact with kfxCreditCardCaptureViewController.
The methods of this protocol notify your delegate with various messages related to credit card capture.
|
optional |
Tells the delegate that the credit card capture is finished and result data is available.
The methods gets called once when credit card capture has finished and provides the credit card data depending on the specified parameters. Your delegate's implementation of this method should dismiss the credit card capture view controller.
Implementation of this method is optional, but expected.
creditCardCaptureViewController | The credit card capture view controller dispatching the message. |
creditCard | The result credit card data. Could be a nil if error is occured. |
error | If an internal error occurs, contains an NSError object that describes the problem. |