灵云SDK开发手册(iOS API)  8.1
HCICaptureGeneralDelegate.h
1 //
2 // HCICaptureGeneralDelegate.h
3 // Pods
4 //
5 // Created by jths on 2017/8/3.
6 //
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "HCICaptureTypes.h"
14 @protocol HCICaptureGeneralDelegate <NSObject>
15 
16 @optional
22 - (void)onCaptureStateWithStateCode:(CaptureStateCode)stateCode;
23 
24 
32 - (void)onCaptureFinishedWithOriginImage:(UIImage *)originImage
33  andEditImage:(UIImage *)editImage
34  andRecogResult:(NSString *)recogResult;
35 @end
36