forked from MxABC/LBXScan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
414 additions
and
286 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// | ||
// SubLBXScanViewController.h | ||
// | ||
// github:https://github.com/MxABC/LBXScan | ||
// Created by lbxia on 15/10/21. | ||
// Copyright © 2015年 lbxia. All rights reserved. | ||
// | ||
|
||
#import "LBXAlertAction.h" | ||
#import "LBXScanViewController.h" | ||
|
||
|
||
//继承LBXScanViewController,在界面上绘制想要的按钮,提示语等 | ||
@interface SubLBXScanViewController : LBXScanViewController | ||
|
||
|
||
|
||
#pragma mark -模仿qq界面 | ||
|
||
@property (nonatomic, assign) BOOL isQQSimulator; | ||
|
||
/** | ||
@brief 扫码区域上方提示文字 | ||
*/ | ||
@property (nonatomic, strong) UILabel *topTitle; | ||
|
||
|
||
|
||
#pragma mark - 底部几个功能:开启闪光灯、相册、我的二维码 | ||
//底部显示的功能项 | ||
@property (nonatomic, strong) UIView *bottomItemsView; | ||
//相册 | ||
@property (nonatomic, strong) UIButton *btnPhoto; | ||
//闪光灯 | ||
@property (nonatomic, strong) UIButton *btnFlash; | ||
//我的二维码 | ||
@property (nonatomic, strong) UIButton *btnMyQR; | ||
|
||
|
||
|
||
|
||
|
||
|
||
@end |
Oops, something went wrong.