12345678910111213141516171819202122232425 |
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^DetectImageForOCRInfoBlock)(BOOL success, NSObject * _Nonnull result);
- @class ZimRpcManager;
- @interface DetectImageForOCRInfoViewController : UIViewController
- @property (nonatomic, copy)DetectImageForOCRInfoBlock ocrInfoBlock;
- @property(nonatomic, strong) ZimRpcManager * rpcManager;
- @property (nonatomic,strong) NSString * certifyId;
- @property(nonatomic, assign) BOOL isClose;
- @end
- NS_ASSUME_NONNULL_END
|