12345678910111213141516171819 |
- //
- // RQQRCodeViewController.h
- // jiaPei
- //
- // Created by 张嵘 on 2021/1/21.
- // Copyright © 2021 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^RQQRCodeScanResultBlock)(NSString *result, BOOL isSuccess);
- @interface RQQRCodeViewController : RQBaseViewController
- - (void)initBlock:(RQQRCodeScanResultBlock)block;
- @end
- NS_ASSUME_NONNULL_END
|