美文网首页iOS开发iOS Developer
二维码快速扫描工具

二维码快速扫描工具

作者: 刘勇虎 | 来源:发表于2017-08-07 13:50 被阅读104次
    演示.gif

    YHQRCode

    二维码快速扫描工具

    项目简介: 码云

    1. 该项目中只有一个控制器,路由效果由动画组成。
    2. 实际应用中可以按需求进行改动。

    项目主要应用技术点

    调用系统相机设备 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];
    }
    
    

    相关文章

      网友评论

        本文标题:二维码快速扫描工具

        本文链接:https://www.haomeiwen.com/subject/vetalxtx.html