// // RAQRCodeScannerViewController.h // Apex And Drivers // // Created by Jack on 2018/6/5. // Copyright © 2018年 USAI. All rights reserved. // #import @interface RAQRCodeScannerViewController : UIViewController @property (nonatomic,copy) void (^QRCodeViewControllerDidCompletion)(RAQRCodeScannerViewController *qrcodeViewController, NSString *value);///< 需要在Block中返回 @property (nonatomic,copy) void (^QRCodeViewControllerDidCanceled)(RAQRCodeScannerViewController *qrcodeViewController);///< 需要在Block中返回 + (instancetype)viewControllerFromStoryboard; @end