MLKBarcodeScanner
@interface MLKBarcodeScanner : NSObject
A barcode scanner that scans barcodes in an image.
-
Returns a barcode scanner with the given options.
Declaration
Objective-C
+ (nonnull instancetype)barcodeScannerWithOptions: (nonnull MLKBarcodeScannerOptions *)options;
Parameters
options
Options containing barcode scanner configuration.
Return Value
A barcode scanner configured with the given options.
-
Returns a barcode scanner with the default options.
Declaration
Objective-C
+ (nonnull instancetype)barcodeScanner;
Return Value
A barcode scanner configured with the default options.
-
Unavailable. Use the class methods.
Declaration
Objective-C
- (nonnull instancetype)init;
-
Processes the given image for barcode scanning.
Declaration
Objective-C
- (void)processImage:(nonnull id<MLKCompatibleImage>)image completion:(nonnull MLKBarcodeScanningCallback)completion;
Parameters
image
The image to process.
completion
Handler to call back on the main queue with barcodes scanned or error.
-
Returns barcode results in the given image or
nil
if there was an error. The barcode scanning is performed synchronously on the calling thread.It is advised to call this method off the main thread to avoid blocking the UI. As a result, an
NSException
is raised if this method is called on the main thread.Declaration
Objective-C
- (nullable NSArray<MLKBarcode *> *) resultsInImage:(nonnull id<MLKCompatibleImage>)image error:(NSError *_Nullable *_Nullable)error;
Parameters
image
The image to get results in.
error
An optional error parameter populated when there is an error getting results.
Return Value
Array of barcode results in the given image or
nil
if there was an error.