123456789101112131415161718192021 |
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^ImageBlock)(UIImage *image, UIImage * _Nullable originImage);
- @interface DetectImageForOCRPhotoViewController : UIViewController
- @property (nonatomic, copy) ImageBlock imageblock;
- @property (nonatomic,assign) NSInteger type;
- @end
- NS_ASSUME_NONNULL_END
|