mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-05 05:09:23 +08:00
13 lines
309 B
Objective-C
13 lines
309 B
Objective-C
//
|
|
// Created by Matthew Smith on 11/7/17.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class BarcodeScannerViewController;
|
|
|
|
@protocol BarcodeScannerViewControllerDelegate <NSObject>
|
|
|
|
- (void)barcodeScannerViewController:(BarcodeScannerViewController *)controller didScanBarcodeWithResult:(NSString *)result;
|
|
|
|
@end |