MBIOcrRecognizerRunnerViewControllerDelegate

@protocol MBIOcrRecognizerRunnerViewControllerDelegate <NSObject>

Protocol for obtaining ocr results

  • Called when scanning library has MBIOcrLayout 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<MBIRecognizerRunnerViewController> *)
                    recognizerRunnerViewController
                        didObtainOcrResult:(nonnull MBIOcrLayout *)ocrResult
                            withResultName:(nonnull NSString *)resultName;

    Swift

    func recognizerRunnerViewController(_ recognizerRunnerViewController: Any!, didObtainOcrResult ocrResult: MBIOcrLayout, withResultName resultName: String)