MBViewControllerFactory
@interface MBViewControllerFactory : NSObject
Factory class containing static methods for creating camera view controllers. Camera view controllers created this way will be managed internally by the SDK, and input frames will be processed.
-
Method creates a camera view controller which is responsible for displaying the camera input on the phone screen.
With this method you can specify custom overlay view to be used on the camera display. The only requirement for the overlay view is that it’s a subclass of MBOverlayViewController
Declaration
Objective-C
+ (nonnull UIViewController<MBRecognizerRunnerViewController> *) recognizerRunnerViewControllerWithOverlayViewController: (nonnull MBOverlayViewController *)overlayViewController;
Swift
class func recognizerRunnerViewController(withOverlayViewController overlayViewController: MBOverlayViewController) -> UIViewController & MBRecognizerRunnerViewController
Parameters
overlayViewController
View Controller which is presented on top of scanning view controller as a child.
Return Value
Scanning view controller fully initialized for presenting on screen.