洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
623 B

  1. //
  2. // DetectImageForOCRInfoViewController.h
  3. // xMediaDemo
  4. //
  5. // Created by 053508 on 2020/6/8.
  6. // Copyright © 2020 DTF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^DetectImageForOCRInfoBlock)(BOOL success, NSObject * _Nonnull result);
  11. @class ZimRpcManager;
  12. @interface DetectImageForOCRInfoViewController : UIViewController
  13. @property (nonatomic, copy)DetectImageForOCRInfoBlock ocrInfoBlock;
  14. @property(nonatomic, strong) ZimRpcManager * rpcManager;
  15. @property (nonatomic,strong) NSString * certifyId;
  16. @property(nonatomic, assign) BOOL isClose;
  17. @end
  18. NS_ASSUME_NONNULL_END