MBPOcrRecognizerRunnerViewControllerDelegate
Objective-C
@protocol MBPOcrRecognizerRunnerViewControllerDelegate <NSObject>
Swift
protocol MBPOcrRecognizerRunnerViewControllerDelegate : NSObjectProtocol
Protocol for obtaining ocr results
-
Called when scanning library has MBPOcrLayout ready to be displayed on UI. NOTE: This method is called on background processing thread. Make sure that you dispatch all your UI API calls to main thread.
Declaration
Objective-C
- (void)recognizerRunnerViewController: (nonnull UIViewController<MBPRecognizerRunnerViewController> *) recognizerRunnerViewController didObtainOcrResult:(nonnull MBPOcrLayout *)ocrResult withResultName:(nonnull NSString *)resultName;
Swift
func recognizerRunnerViewController(_ recognizerRunnerViewController: any UIViewController & MBPRecognizerRunnerViewController, didObtainOcrResult ocrResult: MBPOcrLayout, withResultName resultName: String)