洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.0 KiB

7 months ago
  1. //
  2. // AFEScanViewDelegate.h
  3. // FaceEyePrint
  4. //
  5. // Created by yukun.tyk on 12/28/15.
  6. // Copyright © 2015 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <BioAuthEngine/AFEStatusBar.h>
  10. /**
  11. *
  12. * 1s内只会显示一条错误消息1
  13. *
  14. */
  15. typedef NS_ENUM(NSInteger, AFEScanViewStatus) {
  16. AFE_SCAN_SHOWING_ERROR, //正在显示错误
  17. AFE_SCAN_SCANNING, //正在扫描
  18. AFE_SCAN_HOLDING, //等待显示缓存信息
  19. AFE_SCAN_STOPPED, //停止中
  20. };
  21. @protocol AFEScanViewProtocol <NSObject>
  22. /**
  23. *
  24. */
  25. - (void)setDelegate:(id<IStatusBarDelegate>)delegate;
  26. /**
  27. *
  28. */
  29. - (void)setNaviBarAlpha:(CGFloat)alpha;
  30. /**
  31. *
  32. */
  33. - (void)showPercent:(CGFloat)stage;
  34. @end