LivingConfigModel.h 557 B

1234567891011121314151617181920212223
  1. //
  2. // LivingConfigModel.h
  3. // IDLFaceSDKDemoOC
  4. //
  5. // Created by 阿凡树 on 2017/5/23.
  6. // Copyright © 2017年 Baidu. All rights reserved.
  7. //
  8. // 此类为了存储用户选择活体检测命令而设置的单例类
  9. //
  10. #import <Foundation/Foundation.h>
  11. @interface LivingConfigModel : NSObject
  12. + (instancetype)sharedInstance;
  13. @property (nonatomic, readwrite, assign) BOOL isByOrder;
  14. @property (nonatomic, readwrite, assign) NSInteger numOfLiveness;
  15. @property (nonatomic, readwrite, retain) NSMutableArray *liveActionArray;
  16. - (void)resetState;
  17. @end