MBIGlareRecognizerRunnerDelegate

@protocol MBIGlareRecognizerRunnerDelegate <NSObject>
@required

/**
 * Called when scanning library finishes glare detection.
 * NOTE: This method is called on background processing thread. Make sure that you dispatch all your UI API calls to main thread.
 */
- (void) recognizerRunner:(nonnull MBIRecognizerRunner *)recognizerRunner didFinishGlareDetectionWithResult:(BOOL)glareFound;
@end

Undocumented

  • Called when scanning library finishes glare detection. 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)recognizerRunner:(nonnull MBIRecognizerRunner *)recognizerRunner
        didFinishGlareDetectionWithResult:(BOOL)glareFound;

    Swift

    func recognizerRunner(_ recognizerRunner: MBIRecognizerRunner, didFinishGlareDetectionWithResult glareFound: Any!)