AJPushDeviceInfo.h 422 B

1234567891011121314151617181920
  1. //
  2. // DeviceInfo.h
  3. // AJPushSDK
  4. //
  5. // Created by Black on 2021/2/2.
  6. // Copyright © 2018 anji-plus 安吉加加信息技术有限公司 http://www.anji-plus.com. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AJPushDeviceInfo : NSObject
  11. //获取手机型号
  12. + (NSString *)getBrandInfo;
  13. //获取手机系统版本
  14. + (NSString *)getOSVerison;
  15. @end
  16. NS_ASSUME_NONNULL_END