Swift3.0二维码扫描实现

关键代码

import AVFoundation
//获取摄像设备
let device = AVCaptureDevice.defaultDevice(withMediaType: AVMediaTypeVideo)
do {
    //创建输入,输出流
    let input = try AVCaptureDeviceInput.init(device: device) let output = AVCaptureMetadataOutput() output.rectOfInterest = CGRect(x: 0.1, y: 0, width: 0.9, height: 1) //设置代理,并且在主线程刷新 output.setMetadataObjectsDelegate(self, queue: DispatchQueue.main) //初始化链接对象 / 高质量采集率 session.canSetSessionPreset(AVCaptureSessionPresetHigh) session.addInput(input) session.addOutput(output) //先添加输入输出流,后设置支持的扫码所支持的格式,不然报错如下:Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[AVCaptureMetadataOutput setMetadataObjectTypes:] Unsupported type found - use -availableMetadataObjectTypes' //http://stackoverflow.com/questions/31063846/avcapturemetadataoutput-setmetadataobjecttypes-unsupported-type-found //设置扫码支持的编码格式 output.metadataObjectTypes = [AVMetadataObjectTypeQRCode,AVMetadataObjectTypeEAN13Code,AVMetadataObjectTypeEAN8Code, AVMetadataObjectTypeCode128Code] let layer = AVCaptureVideoPreviewLayer(session: session) layer?.videoGravity = AVLayerVideoGravityResizeAspectFill layer?.frame = view.layer.bounds view.layer.insertSublayer(layer!, at: 0) //开始捕捉 session.startRunning() } catch let error as NSError { print("errorInfo\(error.domain)") } /// 实现代理方法 extension ScanCodeController:AVCaptureMetadataOutputObjectsDelegate { func captureOutput(_ captureOutput: AVCaptureOutput!, didOutputMetadataObjects metadataObjects: [Any]!, from connection: AVCaptureConnection!) { if metadataObjects.count > 0 { session.stopRunning() let object = metadataObjects[0] let string: String = (object as AnyObject).stringValue if let url = URL(string: string) { if UIApplication.shared.canOpenURL(url) { //去打开地址链接 _ = self.navigationController?.popViewController(animated: true) UIApplication.shared.open(url) } else { //获取非链接结果 let alertViewController = UIAlertController(title: "扫描结果", message: (object as AnyObject).stringValue, preferredStyle: .alert) let actionCancel = UIAlertAction(title: "退出", style: .cancel, handler: { (action) in _ = self.navigationController?.popViewController(animated: true) }) let actinSure = UIAlertAction(title: "再次扫描", style: .default, handler: { (action) in self.session.startRunning() }) alertViewController.addAction(actionCancel) alertViewController.addAction(actinSure) self.present(alertViewController, animated: true, completion: nil) } } } } }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62

DEMO效果

这里写图片描述

转载于:https://www.cnblogs.com/ydkf85/p/6417315.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值