#if __has_include() #import #endif @interface TextDetectorManager : NSObject typedef void(^postRecognitionBlock)(NSArray *textBlocks); - (instancetype)init; -(BOOL)isRealDetector; -(void)findTextBlocksInFrame:(UIImage *)image scaleX:(float)scaleX scaleY:(float)scaleY completed:(postRecognitionBlock)completed; @end