123456789101112131415161718192021222324252627282930 |
- #import <UIKit/UIKit.h>
- #import "DTFFaceViewProtocol.h"
- typedef NS_ENUM(NSInteger, DTFAuthScene) {
- DTFAuthSceneFace = 1,
- DTFAuthSceneMultiFactor = 2,
- };
- @interface DTFFaceView : UIView<DTFFaceViewProtocol>
- @property(nonatomic, assign) DTFAuthScene authScene;
- @property(nonatomic, strong) NSString *platformInfo;
- @property(nonatomic, assign) BOOL isSuitable;
- - (instancetype)initWithAuthScene:(DTFAuthScene)authScene platformInfo:(NSString *)platformInfo isSuitable:(BOOL)isSuitable;
- - (instancetype)initWithAuthScene:(DTFAuthScene)authScene;
- - (void)setScreenRotation:(BOOL)isRotation;
- - (void)setPlayBtnIcon;
- @end
|