No Description

QRCodeScanDelegate.swift 493B

12345678910111213141516171819
  1. //
  2. // QRCodeScanDelegate.swift
  3. // QRView
  4. //
  5. // Created by FFIB on 2017/7/19.
  6. // Copyright © 2017年 FFIB. All rights reserved.
  7. //
  8. import UIKit
  9. public protocol QRCodeScanViewDelegate: class {
  10. func scanView(_ scanner: QRCodeScanView, receivedScanResult: QRCodeScanResult)
  11. func scanView(_ scanView: QRCodeScanView, didFinshWithError error: NSError?)
  12. }
  13. public extension QRCodeScanViewDelegate {
  14. func scanView(_ scanView: QRCodeScanView, didFinshWithError error: NSError?) {}
  15. }