有没有办法通过代码获取iPhone型号(例如MC143C)

时间:2017-01-31 12:50:06

标签: ios objective-c iphone swift

我只是通过下面给出的代码找出我正在使用的设备:

NSString* deviceName()
{
    struct utsname systemInfo;
    uname(&systemInfo);
    return [NSString stringWithCString:systemInfo.machine
                              encoding:NSUTF8StringEncoding];
}

但有没有办法找到我的iPhone的型号? 示例 - iPhone 6型号MG3C2 提前谢谢....

0 个答案:

没有答案