39 lines
840 B
Objective-C
39 lines
840 B
Objective-C
//
|
|
// SubLBXScanViewController.h
|
|
//
|
|
// github:https://github.com/MxABC/LBXScan
|
|
//
|
|
|
|
#import "LBXScanNativeViewController.h"
|
|
|
|
#pragma mark
|
|
//继承LBXScanViewController,在界面上绘制想要的按钮,提示语等
|
|
@interface QQScanNativeViewController : LBXScanNativeViewController
|
|
|
|
|
|
|
|
/**
|
|
@brief 扫码区域上方提示文字
|
|
*/
|
|
@property (nonatomic, strong) UILabel *topTitle;
|
|
|
|
#pragma mark --增加拉近/远视频界面
|
|
@property (nonatomic, assign) BOOL isVideoZoom;
|
|
|
|
#pragma mark - 底部几个功能:开启闪光灯、相册、我的二维码
|
|
//底部显示的功能项
|
|
@property (nonatomic, strong) UIView *bottomItemsView;
|
|
//相册
|
|
@property (nonatomic, strong) UIButton *btnPhoto;
|
|
//闪光灯
|
|
@property (nonatomic, strong) UIButton *btnFlash;
|
|
//我的二维码
|
|
@property (nonatomic, strong) UIButton *btnMyQR;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|