12345678910111213141516171819 |
- import UIKit
- public protocol QRCodeScanViewDelegate: class {
- func scanView(_ scanner: QRCodeScanView, receivedScanResult: QRCodeScanResult)
- func scanView(_ scanView: QRCodeScanView, didFinshWithError error: NSError?)
- }
- public extension QRCodeScanViewDelegate {
- func scanView(_ scanView: QRCodeScanView, didFinshWithError error: NSError?) {}
- }
|