RAQRCodeScannerViewController.h 634 B

123456789101112131415161718
  1. //
  2. // RAQRCodeScannerViewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/5.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RAQRCodeScannerViewController : UIViewController
  10. @property (nonatomic,copy) void (^QRCodeViewControllerDidCompletion)(RAQRCodeScannerViewController *qrcodeViewController, NSString *value);///< 需要在Block中返回
  11. @property (nonatomic,copy) void (^QRCodeViewControllerDidCanceled)(RAQRCodeScannerViewController *qrcodeViewController);///< 需要在Block中返回
  12. + (instancetype)viewControllerFromStoryboard;
  13. @property bool auto_style;
  14. @end