• 使用系统框架进行的二维码扫描


    #import "ScanViewController.h"

    #import <AVFoundation/AVFoundation.h>

     //这是使用系统框架进行的二维码扫描

    //其他框架包括第三方ZBar和ZXing

    @interface ScanViewController ()<AVCaptureMetadataOutputObjectsDelegate>

    @property (weak, nonatomic) IBOutlet UIView *viewPreview;

    @property (weak, nonatomic) IBOutlet UILabel *lblStatus;

    @property (weak, nonatomic) IBOutlet UIButton *startBtn;

    - (IBAction)startStopReading:(id)sender;

    @property (strong, nonatomic) UIView *boxView;

    @property (nonatomic) BOOL isReading;

    @property (strong, nonatomic) CALayer *scanLayer;

    //捕捉会话

    @property (nonatomic, strong) AVCaptureSession *captureSession;

    //展示layer

    @property (nonatomic, strong) AVCaptureVideoPreviewLayer *videoPreviewLayer;

    @end

    @implementation ScanViewController

    - (void)viewDidLoad {

        [super viewDidLoad];

        

        _captureSession = nil;

        _isReading = NO;

        

    }

    - (BOOL)startReading {

        NSError *error;

        

        //1.初始化捕捉设备(AVCaptureDevice),类型为AVMediaTypeVideo

        AVCaptureDevice *captureDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];

        

        //2.用captureDevice创建输入流

        AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:captureDevice error:&error];

        if (!input) {

            NSLog(@"%@", [error localizedDescription]);

            return NO;

        }

        

        //3.创建媒体数据输出流

        AVCaptureMetadataOutput *captureMetadataOutput = [[AVCaptureMetadataOutput alloc] init];

        

        //4.实例化捕捉会话

        _captureSession = [[AVCaptureSession alloc] init];

        

        //4.1.将输入流添加到会话

        [_captureSession addInput:input];

        

        //4.2.将媒体输出流添加到会话中

        [_captureSession addOutput:captureMetadataOutput];

        

        //5.创建串行队列,并加媒体输出流添加到队列当中

        dispatch_queue_t dispatchQueue;

        dispatchQueue = dispatch_queue_create("myQueue", NULL);

        //5.1.设置代理

        [captureMetadataOutput setMetadataObjectsDelegate:self queue:dispatchQueue];

        

        //5.2.设置输出媒体数据类型为QRCode

        [captureMetadataOutput setMetadataObjectTypes:[NSArray arrayWithObject:AVMetadataObjectTypeQRCode]];

        

        //6.实例化预览图层

        _videoPreviewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:_captureSession];

        

        //7.设置预览图层填充方式

        [_videoPreviewLayer setVideoGravity:AVLayerVideoGravityResizeAspectFill];

        

        //8.设置图层的frame

        [_videoPreviewLayer setFrame:_viewPreview.layer.bounds];

        

        //9.将图层添加到预览view的图层上

        [_viewPreview.layer addSublayer:_videoPreviewLayer];

        

        //10.设置扫描范围

        captureMetadataOutput.rectOfInterest = CGRectMake(0.2f, 0.2f, 0.8f, 0.8f);

        

        //10.1.扫描框

        _boxView = [[UIView alloc] initWithFrame:CGRectMake(_viewPreview.bounds.size.width * 0.2f, _viewPreview.bounds.size.height * 0.2f, _viewPreview.bounds.size.width - _viewPreview.bounds.size.width * 0.4f, _viewPreview.bounds.size.height - _viewPreview.bounds.size.height * 0.4f)];

        _boxView.layer.borderColor = [UIColor greenColor].CGColor;

        _boxView.layer.borderWidth = 1.0f;

        

        [_viewPreview addSubview:_boxView];

        

        //10.2.扫描线

        _scanLayer = [[CALayer alloc] init];

        _scanLayer.frame = CGRectMake(0, 0, _boxView.bounds.size.width, 1);

        _scanLayer.backgroundColor = [UIColor brownColor].CGColor;

        

        [_boxView.layer addSublayer:_scanLayer];

        

        NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:0.2f target:self selector:@selector(moveScanLayer:) userInfo:nil repeats:YES];

        

        [timer fire];

        

        //10.开始扫描

        [_captureSession startRunning];

        

        

        return YES;

    }

    - (IBAction)startStopReading:(id)sender {

        if (!_isReading) {

            if ([self startReading]) {

                [_startBtn setTitle:@"Stop" forState:UIControlStateNormal];

                [_lblStatus setText:@"Scanning for QR Code"];

            }

        }

        else{

            [self stopReading];

            [_startBtn setTitle:@"Start!" forState:UIControlStateNormal];

        }

        

        _isReading = !_isReading;

    }

    -(void)stopReading{

        [_captureSession stopRunning];

        _captureSession = nil;

        [_scanLayer removeFromSuperlayer];

        [_videoPreviewLayer removeFromSuperlayer];

    }

    #pragma mark - AVCaptureMetadataOutputObjectsDelegate

    - (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection

    {

        //所有的二维码都是字符串, 所以我们可以根据返回的字符串类型进行判断是否进行页面跳转

        //比如以http://开头的字符串, 我们就可以进行叶面跳转到网页

        //metadataObjects是返回数据的数组

        NSLog(@"%@", metadataObjects);

        /*

         (

         "<AVMetadataMachineReadableCodeObject: 0x17e4eb20, type="org.iso.QRCode", bounds={ 0.3,0.3 0.4x0.7 }>corners { 0.7,0.9 0.6,0.3 0.3,0.5 0.4,1.0 }, time 23728273249000, stringValue "http://weixin.qq.com/r/CnUMFDDExm25rXR39yAY""

         )

         */

        //判断是否有数据

        if (metadataObjects != nil && [metadataObjects count] > 0) {

            AVMetadataMachineReadableCodeObject *metadataObj = [metadataObjects objectAtIndex:0];

            //判断回传的数据类型

            if ([[metadataObj type] isEqualToString:AVMetadataObjectTypeQRCode]) {

                [_lblStatus performSelectorOnMainThread:@selector(setText:) withObject:[metadataObj stringValue] waitUntilDone:NO];

                

                [self performSelectorOnMainThread:@selector(stopReading) withObject:nil waitUntilDone:NO];

                _isReading = NO;

            }

        }

    }

    - (void)moveScanLayer:(NSTimer *)timer

    {

        CGRect frame = _scanLayer.frame;

        if (_boxView.frame.size.height < _scanLayer.frame.origin.y) {

            frame.origin.y = 0;

            _scanLayer.frame = frame;

        }else{

            

            frame.origin.y += 5;

            

            [UIView animateWithDuration:0.1 animations:^{

                _scanLayer.frame = frame;

            }];

        }

    }

    - (BOOL)shouldAutorotate

    {

        return NO;

    }

    @end

  • 相关阅读:
    电路维修 (广搜变形-双端队列bfs)
    靶形数独 (dfs+预处理+状态压缩)
    埃及分数问题(带乐观估计函数的迭代加深搜索算法-IDA*)
    weight (搜索对象的选取)
    Codeforces Round #506 (Div. 3)
    生日蛋糕 (poj1190) (dfs剪枝)
    校内模拟赛题面
    NOIP2013 D1T3 货车运输 zz耻辱记
    NOIP2011 D2T3 观光公交 做题笔记
    ARC 103
  • 原文地址:https://www.cnblogs.com/lurenq/p/5338605.html
Copyright © 2020-2023  润新知