SystemInfoConfig.h 579 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SystemInfoConfig.h
  3. // FunSDKDemo
  4. //
  5. // Created by XM on 2018/5/7.
  6. // Copyright © 2018年 XM. All rights reserved.
  7. //
  8. /***
  9. 获取设备基本信息 SystemInfo
  10. *****/
  11. #import "Header.h"
  12. @protocol SystemInfoConfigDelegate <NSObject>
  13. //获取能力级回调信息
  14. - (void)SystemInfoConfigGetResult:(NSInteger)result;
  15. @end
  16. #import "ConfigControllerBase.h"
  17. @interface SystemInfoConfig : ConfigControllerBase
  18. @property (nonatomic, assign) id <SystemInfoConfigDelegate> delegate;
  19. #pragma mark - 通过设备序列号获取设备Systeminfo
  20. - (void)getSystemInfo;
  21. @end