发布于 2017-03-19 12:44:03 | 151 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的Swift教程,程序狗速度看过来!

Swift编程语言

SWIFT,苹果于2014年WWDC(苹果开发者大会)发布的新开发语言,可与Objective-C*共同运行于Mac OS和iOS平台,用于搭建基于苹果平台的应用程序。


这篇文章主要为大家详细介绍了Swift3.0仿支付宝二维码扫描效果的相关代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了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)
      }
      }
    }
  }
}


DEMO效果:

下载地址:DEMO

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持PHPERZ。



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务