美文网首页
获取手机类型的多种方法

获取手机类型的多种方法

作者: 杜若玲玲 | 来源:发表于2016-12-08 10:08 被阅读12次

1.这种是在较高层次获取设备类型,返回的是 iPhone , iPod , iPad 。适合要求不高的。

NSString *deviceType = [[UIDevice currentDevice] model];

2.是Linux中获取设备类型的方法,主要是C语言的方法,注意引入头文件 #import "sys/utsname.h" 。输入底层获取设备类型的方法。

#import "sys/utsname.h"

- (NSString *)getDeviceVersionInfo

{

struct utsname systemInfo;

uname(&systemInfo);

NSString *platform = [NSString stringWithFormat:@"%s", systemInfo.machine];

return platform;

}

相关文章

网友评论

      本文标题:获取手机类型的多种方法

      本文链接:https://www.haomeiwen.com/subject/unojmttx.html