mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-01 11:39:23 +08:00
16 lines
430 B
C
16 lines
430 B
C
|
//
|
||
|
// Created by Matthew Smith on 11/7/17.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <MTBBarcodeScanner/MTBBarcodeScanner.h>
|
||
|
|
||
|
#import "BarcodeScannerViewControllerDelegate.h"
|
||
|
|
||
|
|
||
|
@interface BarcodeScannerViewController : UIViewController
|
||
|
@property(nonatomic, retain) UIView *previewView;
|
||
|
@property(nonatomic, retain) MTBBarcodeScanner *scanner;
|
||
|
@property(nonatomic, weak) id<BarcodeScannerViewControllerDelegate> delegate;
|
||
|
|
||
|
@end
|