OliveappAsyncIdcardCaptorDelegate.h 521 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // AsyncOcrManagerDelegate.h
  3. // IdcardOcrSDK
  4. //
  5. // Created by Xiaoyang Lin on 16/5/13.
  6. // Copyright © 2016年 com.yitutech. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol OliveappAsyncIdcardCaptorDelegate <NSObject>
  10. @required
  11. /**
  12. * 捕获成功的回调,
  13. *
  14. * @param imgData 返回质量最好的一张身份证
  15. */
  16. - (void) onDetectionSucc: (NSData *) imgData;
  17. /**
  18. * 身份证检测的回调
  19. *
  20. * @param status 检测状态
  21. */
  22. - (void) onDetectionStatus: (int) status;
  23. @end