ScanQRCodeViewController.h 630 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ScanQRCodeViewController.h
  3. // MIT_Shop
  4. //
  5. // Created by 翟玉磊 on 2017/11/18.
  6. // Copyright © 2017年 翟玉磊. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class ScanQRCodeViewController;
  10. @protocol ScanQRCodeViewControllerDelegate <NSObject>
  11. /**
  12. 扫描成功后获取的链接
  13. @param text 链接
  14. */
  15. - (void)scanCompletionCallbackWithText:(NSString *)text ScanQRCodeViewController:(ScanQRCodeViewController *)ScanQRCodeViewController;
  16. @end
  17. @interface ScanQRCodeViewController : BaseViewController
  18. @property (nonatomic, weak) id<ScanQRCodeViewControllerDelegate> delegate;
  19. - (void)startAnimaion;
  20. @end