No Description

QRCodeScanDelegate.swift 498B

12345678910111213141516171819
  1. //
  2. // QRCodeScanDelegate.swift
  3. // QRView
  4. //
  5. // Created by LISA on 2017/7/19.
  6. // Copyright © 2017年 FFIB. All rights reserved.
  7. //
  8. import Foundation
  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. }