iOS 简单易用的二维码扫描及生成二维码三方控件LFQRCode,可灵活自定义UI
Posted 张林峰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 简单易用的二维码扫描及生成二维码三方控件LFQRCode,可灵活自定义UI相关的知识,希望对你有一定的参考价值。
扫描的控件是一个view,使用者只需贴在自己的控制器内即可。其他UI用户可在自己控制器随便添加。代码如下
- (void)viewDidLoad { [super viewDidLoad]; //扫描有效区(即框内透明区域) CGRect interestRect = CGRectMake(20, (self.view.frame.size.height - (self.view.frame.size.width - 40))/2.0f, self.view.frame.size.width - 40, self.view.frame.size.width - 40); //扫描控件 _scanView = [[LFQRCodeScanner alloc] initWithFrame:self.view.bounds rectOfInterest:interestRect]; _scanView.imgLine.image = [UIImage imageNamed:@"line"]; _scanView.scanFilishBlock = ^(AVMetadataMachineReadableCodeObject *result) { NSLog(@"扫描结果:%@",result.stringValue); }; [self.view insertSubview:_scanView atIndex:0];//将扫描view放到底层 } - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear: animated]; [self.scanView start]; } - (void)viewDidDisappear:(BOOL)animated { [super viewDidDisappear: animated]; [self.scanView stop]; }
源码地址:https://github.com/zhanglinfeng/LFQRCode
支持cocoaPods
pod ‘LFQRCode‘ (推荐)
以上是关于iOS 简单易用的二维码扫描及生成二维码三方控件LFQRCode,可灵活自定义UI的主要内容,如果未能解决你的问题,请参考以下文章