IOS获取手机与屏幕属性

IOS获取手机与屏幕属性,第1张

概述IOS获取手机与屏幕属性

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

            //手机型号。            size_t size;            sysctlbyname("hw.machine", NulL, &size, 0);            char *machine = (char*)malloc(size);            sysctlbyname("hw.machine", machine, 0);            Nsstring *platform = [Nsstring stringWithCString:machine                                   enCoding:NSUTF8StringEnCoding];

一.UIDevice
    //设备相关信息的获取      Nsstring *strname = [[UIDevice currentDevice] name];      NSLog(@"设备名称:%@", strname);//e.g. "My iPhone"      Nsstring *strID = [[UIDevice currentDevice] uniqueIDentifIEr];      NSLog(@"设备唯一标识:%@", strID);//UUID,5.0后不可用            Nsstring *strSysname = [[UIDevice currentDevice] systemname];      NSLog(@"系统名称:%@", strSysname);// e.g. @"iOS"      Nsstring *strSysversion = [[UIDevice currentDevice] systemVersion];      NSLog(@"系统版本号:%@", strSysversion);// e.g. @"4.0"            Nsstring *strModel = [[UIDevice currentDevice] model];      NSLog(@"设备模式:%@", strModel);// e.g. @"iPhone", @"iPod touch"            Nsstring *strLocModel = [[UIDevice currentDevice] localizedModel];      NSLog(@"本地设备模式:%@", strLocModel);// localized version of model     //地方型号(国际化区域名称)            Nsstring* phoneModel = [[UIDevice currentDevice] model];      NSLog(@"手机型号: %@",phoneModel );   //手机型号

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的IOS获取手机与屏幕属性全部内容,希望文章能够帮你解决IOS获取手机与屏幕属性所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1106635.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存