FullScreenScanViewController.h 544 B

12345678910111213141516171819202122
  1. //
  2. // FullScreenScanViewController.h
  3. // alipayScanSDKDemo
  4. //
  5. // Created by zikong on 2021/7/12.
  6. // Copyright © 2021 satyso. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <TBScanSDK/TBScanSDK.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface FullScreenScanViewController : TBScanViewController <TBScanViewControllerDelegate>
  12. - (instancetype)initWithCallback:(MPModuleKeepAliveCallback)callback;
  13. - (instancetype)initWithAnimationRect:(CGRect)animationRect delegate:(id<TBScanViewControllerDelegate>)delegate;
  14. @end
  15. NS_ASSUME_NONNULL_END