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

34 lines
591 B

7 months ago
  1. //
  2. // APBDeviceInfo.h
  3. // BioAuthEngine
  4. //
  5. // Created by 晗羽 on 28/02/2018.
  6. // Copyright © 2018 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface APBDeviceInfo : NSObject
  11. @property(nonatomic,strong)NSString* dtfDeviceToken;
  12. + (instancetype)getInstance;
  13. //获取语言类型
  14. - (NSInteger)languageCode;
  15. - (NSString *)languageName;
  16. //在某些未初始化设备指纹的地方提供初始化接口
  17. - (void)initDeviceInfo;
  18. //获取apdidtoken
  19. - (NSString *)getApdidToken;
  20. - (BOOL)loadDylib;
  21. - (UIViewController *)currentVC;
  22. @end