OliveappIdcardCaptorResultDelegate.h 480 B

1234567891011121314151617181920212223242526
  1. //
  2. // OliveappIdcardCaptorResultDelegate.h
  3. // AppSampleYitu
  4. //
  5. // Created by Xiaoyang Lin on 16/7/23.
  6. // Copyright © 2016年 Oliveapp. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol OliveappIdcardCaptorResultDelegate<NSObject>
  10. @required
  11. /**
  12. * 捕获成功的回调,
  13. *
  14. * @param imgData 返回质量最好的一张身份证
  15. */
  16. - (void) onDetectionSucc: (NSData *) imgData;
  17. /**
  18. * 取消身份证捕获
  19. */
  20. - (void) onIdcardCaptorCancel;
  21. @end