[UIDevice currentDevice].model

田文景
2023-12-01

  见名知意:是苹果设备类型的汇总。

1. iPhone Simulator

 2.iPad Simulator

3.iPod touch

4.iPad

5.iPhone

 前面的数字,代表在设备里面的排行,可以通过排行值的比较[[UIDevice currentDevice].model substringToIndex:4],得知设备型号是iPad;

如果数字不好识记,可以通过字符串比较,[[UIDevice currentDevice]model]isEqualToString:@"iPad",得知设备类型。

 类似资料: