Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion LBXScanDemo/LBXScanDemo/CreateBarCodeViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ - (void)viewDidLoad {
self.edgesForExtendedLayout = UIRectEdgeNone;
}
self.view.backgroundColor = [UIColor whiteColor];

NSLog(@"提交3");
[self showSetttingButton];
}

Expand Down Expand Up @@ -74,6 +74,7 @@ - (void)viewDidAppear:(BOOL)animated
[view addSubview:_qrImgView];
self.qrView = view;

NSLog(@"设置条形码和二维码同时可扫描");

//条形码
self.tView = [[UIView alloc]initWithFrame:CGRectMake( (CGRectGetWidth(self.view.frame)-CGRectGetWidth(self.view.frame)*5/6)/2,
Expand Down
2 changes: 1 addition & 1 deletion LBXScanDemo/LBXScanDemo/DIYScanViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ - (void)popAlertMsgWithScanResult:(NSString*)strResult

strResult = @"识别失败";
}

NSLog(@"提交2");
__weak __typeof(self) weakSelf = self;
[LBXAlertAction showAlertWithTitle:@"扫码内容" msg:strResult buttonsStatement:@[@"知道了"] chooseBlock:^(NSInteger buttonIdx) {

Expand Down
2 changes: 1 addition & 1 deletion LBXScanDemo/LBXScanDemo/StyleDIY.m
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ + (LBXScanViewStyle*)qqStyle

style.notRecoginitonArea = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.6];


NSLog(@"提交1");
return style;
}

Expand Down