flutter_barcode_reader/ios/Classes/BarcodeScannerViewControllerDelegate.h

15 lines
434 B
C
Raw Normal View History

2017-11-08 10:32:33 +08:00
//
// Created by Matthew Smith on 11/7/17.
//
#import <Foundation/Foundation.h>
@class BarcodeScannerViewController;
@protocol BarcodeScannerViewControllerDelegate <NSObject>
- (void)barcodeScannerViewController:(BarcodeScannerViewController *)controller didScanBarcodeWithResult:(NSString *)result;
- (void)barcodeScannerViewController:(BarcodeScannerViewController *)controller didFailWithErrorCode:(NSString *)errorCode;
2017-11-08 10:32:33 +08:00
@end