mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-17 01:59:22 +08:00
13 lines
309 B
C
13 lines
309 B
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
|