iphone开发:获取设备型号
来源:未知 责任编辑:智问网络 发表时间:2013-11-08 08:45 点击:次
+ (NSString *)getPhoneModel
{
size_t size;
// get the length of machine name
sysctlbyname("hw.machine", NULL, &size, NULL, 0);
// get machine name
char *machine = (char*)malloc(size);
sysctlbyname("hw.machine", machine, &size, NULL, 0);
NSString *platform = [NSString stringWithCString:machine encoding:NSASCIIStringEncoding];
free(machine);
return platform;
}
摘自 云怀空-abel
相关新闻>>
- 发表评论
-
- 最新评论 更多>>