国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS實現(xiàn)二維碼的掃描功能

2020-07-26 03:34:55
字體:
供稿:網(wǎng)友

直接上代碼,就不多廢話了

//// ViewController.m// QRCode//// Created by chenchen on 15/7/30.// Copyright (c) 2015年 BSY. All rights reserved.//#import <AVFoundation/AVFoundation.h>#import "ViewController.h"@interface ViewController ()<AVCaptureMetadataOutputObjectsDelegate> @end @implementation ViewController - (void)viewDidLoad {  [super viewDidLoad];          AVCaptureSession *session = [[AVCaptureSession alloc] init];  AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];  NSError *error = nil;     AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device                                    error:&error];  if (input) {    [session addInput:input];  } else {    NSLog(@"Error: %@", error);  }  AVCaptureMetadataOutput *output = [[AVCaptureMetadataOutput alloc] init];  //設(shè)置掃碼支持的編碼格式(如下設(shè)置條形碼和二維碼兼容)  [output setMetadataObjectTypes:@[AVMetadataObjectTypeQRCode,AVMetadataObjectTypeEAN13Code, AVMetadataObjectTypeEAN8Code, AVMetadataObjectTypeCode128Code]];  [output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];  [session addOutput:output];  [session startRunning];} #pragma mark - AVCaptureMetadataOutputObjectsDelegate- (void)captureOutput:(AVCaptureOutput *)captureOutputdidOutputMetadataObjects:(NSArray *)metadataObjects    fromConnection:(AVCaptureConnection *)connection{  NSString *QRCode = nil;  for (AVMetadataObject *metadata in metadataObjects) {    if ([metadata.type isEqualToString:AVMetadataObjectTypeQRCode]) {      // This will never happen; nobody has ever scanned a QR code... ever      QRCode = [(AVMetadataMachineReadableCodeObject *)metadata stringValue];      break;    }  }     NSLog(@"QR Code: %@", QRCode);}- (void)didReceiveMemoryWarning {  [super didReceiveMemoryWarning];  // Dispose of any resources that can be recreated.} @end

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 平阴县| 汉沽区| 台东县| 广元市| 青州市| 庆安县| 安龙县| 穆棱市| 抚顺县| 庆元县| 阜平县| 晋江市| 开封县| 德化县| 沙湾县| 齐齐哈尔市| 宁化县| 长宁区| 元朗区| 璧山县| 静海县| 青铜峡市| 磐石市| 灵台县| 井冈山市| 永川市| 岗巴县| 汨罗市| 蒲城县| 嘉义市| 井陉县| 陕西省| 浦城县| 张家口市| 临夏县| 枝江市| 翁源县| 防城港市| 渭源县| 安康市| 新津县|