获取手机类型的多种方法

2016-12-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;

}

上一篇 下一篇

猜你喜欢

热点阅读