3

我已经在我的应用程序中使用了这个函数来返回我的设备的型号名称并且工作得很好,但是我怎样才能找到这个函数的返回值的完整列表(es for iphone3,3gs,4s,ipad,ipad2,ipod ecc ecc

size_t size;  
sysctlbyname("hw.machine", NULL, &size, NULL, 0);  
char *machine = malloc(size);  
sysctlbyname("hw.machine", machine, &size, NULL, 0);  
NSString *platform = [NSString stringWithCString:machine];  
free(machine);  
return platform; 

谢谢

4

2 回答 2

6

您还可以使用UIDevice以下类获取移动操作系统的所有详细信息:

NSLog(@"uniqueIdentifier: %@", [[UIDevice currentDevice] uniqueIdentifier]);
NSLog(@"name: %@", [[UIDevice currentDevice] name]);
NSLog(@"systemName: %@", [[UIDevice currentDevice] systemName]);
NSLog(@"systemVersion: %@", [[UIDevice currentDevice] systemVersion]);
NSLog(@"model: %@", [[UIDevice currentDevice] model]);
NSLog(@"localizedModel: %@", [[UIDevice currentDevice] localizedModel]);
于 2011-11-18T17:03:08.583 回答
0

是显示所有硬件标识符的更新列表。

于 2013-10-10T00:08:44.757 回答