官方网站上是否有苹果设备的标识符列表?

时间:2017-06-20 11:55:30

标签: ios

官方网站(如developer.apple.com)上是否有苹果设备的标识符列表(请参阅附带的版画屏幕)? 我在维基百科和其他网站上看到了这样一个列表(不同的实际情况),但我无法在官方网站上找到它。 您可以使用以下代码获取代码:

#import <sys/utsname.h>

    struct utsname systemInfo;
    uname(&systemInfo);
    NSString *deviceModel = [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding];

list

1 个答案:

答案 0 :(得分:1)

据我所知,iPhone Wiki是您最好的选择。我不知道为什么你想要这些信息(如果你正在编写应用程序并查看这个,这是一个坏主意),但它应该都存在。如果不是,aligned on the left也可能有一个列表。