iOS如何获取设备相关信息

2025-10-22 08:15:32

1、获取iPhone名称:

[UIDevice currentDevice].name;

iOS如何获取设备相关信息

2、获取app版本号:

[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]

iOS如何获取设备相关信息

3、获取电池电量:

[UIDevice currentDevice].batteryLevel;

iOS如何获取设备相关信息

4、获取当前系统名称:

[UIDevice currentDevice].systemName;

iOS如何获取设备相关信息

5、获取当前系统版本号:

[UIDevice currentDevice].systemVersion;

iOS如何获取设备相关信息

6、获取UUID:

[[UIDevice currentDevice] identifierForVendor].UUIDString;

iOS如何获取设备相关信息

7、获取总内存大小:

[NSProcessInfo processInfo].physicalMemory;

iOS如何获取设备相关信息

8、获取当前语言:

NSArray *languageArray = [NSLocale preferredLanguages];

[languageArray objectAtIndex:0]

iOS如何获取设备相关信息

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢