洛阳学员端
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.

30 lines
800 B

7 months ago
  1. //
  2. // DTFFaceView.h
  3. // MultiFactorFacade
  4. //
  5. // Created by mengbingchuan on 2022/6/22.
  6. // Copyright © 2022 DTF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "DTFFaceViewProtocol.h"
  10. typedef NS_ENUM(NSInteger, DTFAuthScene) {
  11. DTFAuthSceneFace = 1, //刷脸
  12. DTFAuthSceneMultiFactor = 2, //意愿
  13. };
  14. @interface DTFFaceView : UIView<DTFFaceViewProtocol>
  15. @property(nonatomic, assign) DTFAuthScene authScene;
  16. @property(nonatomic, strong) NSString *platformInfo;
  17. @property(nonatomic, assign) BOOL isSuitable;
  18. - (instancetype)initWithAuthScene:(DTFAuthScene)authScene platformInfo:(NSString *)platformInfo isSuitable:(BOOL)isSuitable;
  19. - (instancetype)initWithAuthScene:(DTFAuthScene)authScene;
  20. - (void)setScreenRotation:(BOOL)isRotation;
  21. - (void)setPlayBtnIcon;
  22. @end