我知道有人能够从IOS 7代码中挖掘出iphone6,1平台字符串。但是,我不知道它对应于iPhone 5S或5C。

如果有人可以抢先使用iPhone 5S / 5C,请为所有人发布平台字符串。

有关平台字符串的更多信息,请参见以下链接theiphonewikistackoverflowstackoverflow

最佳答案

  • iPhone6,1 = iPhone 5S GSM
  • iPhone6,2 = iPhone 5S全局
  • iPhone5,3 = iPhone 5C GSM
  • iPhone5,4 = iPhone 5C全局

  • 码:
    if ([platform hasPrefix:@"iPhone5,3"])            return @"iPhone 5C (GSM)";
    if ([platform hasPrefix:@"iPhone5,4"])            return @"iPhone 5C (Global)";
    if ([platform hasPrefix:@"iPhone6,1"])            return @"iPhone 5S (GSM)";
    if ([platform hasPrefix:@"iPhone6,2"])            return @"iPhone 5S (Global)";
    

    07-27 13:58