刘勇虎的官方网站
网站内容包含大前端、服务器开发、Python开发、iOS开发、Android开发、网站维护等技术文章。专注于分享技术经验,职业心得体会,IT优秀文章与教程创作。
Stay hungry,Stay foolish,Stay young
调用系统相机设备 AVCaptureDevice 指定输出与输入:
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
NSError *error;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
AVCaptureMetadataOutput *output = [[AVCaptureMetadataOutput alloc]init];
[output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
设置输出元数据格式:
output.metadataObjectTypes = @[AVMetadataObjectTypeQRCode];
配置显示图层:
_previewlayer = [AVCaptureVideoPreviewLayer layerWithSession:_captureSession];
// 显示方式 -- 填充
_previewlayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
_previewlayer.frame = _qrView.layer.bounds;
绘制二维码页面:
- (void)drawRect:(CGRect)rect {
// Drawing code
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 191/255.0, 191/255.0, 191/255.0, 0.5);
CGContextMoveToPoint(context, 0, 0);
CGContextAddLineToPoint(context, rect.size.width, 0);
CGContextAddLineToPoint(context, rect.size.width, rect.size.height);
CGContextAddLineToPoint(context, 0, rect.size.height);
CGContextFillPath(context);
CGSize size = rect.size;
CGContextClearRect(context, CGRectMake(QRRECT_ORIGN_X, QRRECT_ORIGN_Y, QRRECT_ORIGN_WIDTH,QRRECT_ORIGN_WIDTH));
CGContextSetStrokeColorWithColor(context, [UIColor greenColor].CGColor);
CGContextSetLineWidth(context, 4);
// 左上角
CGContextMoveToPoint(context,rect.size.width/2 -100 , 110);
CGContextAddLineToPoint(context, rect.size.width/2 -100, 100);
CGContextAddLineToPoint(context, rect.size.width/2 -90, 100);
// 右上角
CGContextMoveToPoint(context,rect.size.width/2 +90 , 100);
CGContextAddLineToPoint(context, rect.size.width/2 +100, 100);
CGContextAddLineToPoint(context, rect.size.width/2 +100, 110);
// 左下角
CGContextMoveToPoint(context,rect.size.width/2 -100 , 290);
CGContextAddLineToPoint(context, rect.size.width/2 -100, 300);
CGContextAddLineToPoint(context, rect.size.width/2 -90, 300);
// 右下角
CGContextMoveToPoint(context,rect.size.width/2 +90 , 300);
CGContextAddLineToPoint(context, rect.size.width/2 +100, 300);
CGContextAddLineToPoint(context, rect.size.width/2 +100, 290);
CGContextStrokePath(context);
}
扫描动画:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationRepeatCount:1000];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationRepeatAutoreverses:YES];
[UIView setAnimationDuration:4.0];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[_middleBar setTransform:CGAffineTransformTranslate(_middleBar.transform ,0,200)];
[UIView commitAnimations];
照明设置
//照明
- (void)torchSwitch:(UITapGestureRecognizer *)sender{
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
_torchBar.selected = !_torchBar.selected;
[_torchBar setTitle:@"关闭照明" forState:UIControlStateSelected];
if ([device hasTorch]) {
[device lockForConfiguration:nil];//开始配置
if (_torchBar.selected) {
[device setTorchMode:AVCaptureTorchModeOn];
}else{
[device setTorchMode:AVCaptureTorchModeOff];
}
[device unlockForConfiguration];//结束配置
}
}
懒加载
//lazy load
- (QRView *)qrView{
if (!_qrView) {
_qrView = [[QRView alloc]initWithFrame:self.view.bounds];
_qrView.backgroundColor = [UIColor clearColor];
}
return _qrView;
}
自定义相应方法
- (void)showTipsAlertWithTitle:(NSString *)title subTitle:(NSString *)subTitle cAction:(SEL)cAction{
UIAlertController *alertVC =[UIAlertController alertControllerWithTitle:title message:subTitle preferredStyle:UIAlertControllerStyleAlert];
__block ViewController *selfVC = self;
__block SEL myAction = cAction;
UIAlertAction *okBtn = [UIAlertAction actionWithTitle:@"好的" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
if ( [selfVC respondsToSelector:cAction]) {
[selfVC performSelector:cAction];
}else{
myAction = nil;
}
}];
[alertVC addAction:okBtn];
[self presentViewController:alertVC animated:YES completion:nil];
}