123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #import <UIKit/UIKit.h>
- #import <AVFoundation/AVFoundation.h>
- @protocol DYFCodeScannerPreViewDelegate <NSObject>
- - (void)back;
- - (void)turnOnTorch;
- - (void)turnOffTorch;
- - (void)openPhotoLibrary;
- @optional
- - (void)zoom:(CGFloat)scale;
- - (void)queryHistory;
- @end
- @interface DYFCodeScannerPreView : UIView
- @property (nonatomic, weak) id<DYFCodeScannerPreViewDelegate> delegate;
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, assign) CGSize transparentArea;
- @property (nonatomic, assign) BOOL isReading;
- @property (nonatomic, strong) UILabel *tipLabel;
- @property (nonatomic, assign) BOOL hasTorch;
- @property (nonatomic, assign) BOOL hasNavigationBar;
- - (void)startScan;
- - (void)stopScan;
- @end
|