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
25 lines
623 B
//
|
|
// DetectImageForOCRInfoViewController.h
|
|
// xMediaDemo
|
|
//
|
|
// Created by 053508 on 2020/6/8.
|
|
// Copyright © 2020 DTF. All rights reserved.
|
|
//
|
|
|
|
#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
|