0

出于某种原因,我需要知道运行我的应用程序的设备的型号版本。我不需要知道设备上运行的 iOS 版本,而是设备的版本,例如:“iPhone 3G”、“iPhone 4S”、“iPad 2”、...

UIDevice 类似乎没有提供以下信息:识别设备和操作系统名称属性 systemName 属性 systemVersion 属性模型属性本地化模型属性 userInterfaceIdiom 属性 uniqueIdentifier 属性 iOS 5.0 中已弃用

我错过了什么吗?

谢谢

4

1 回答 1

2

查看UIDevice-Extension

向 UIDevice 添加功能以区分 iPod touch 1G 和 2G 等平台以及 iPhone

UIDevice-Hardware.h类它可能得到:

- (NSString *) platform;
- (NSString *) hwmodel;
- (NSUInteger) platformType;
- (NSString *) platformString;
于 2012-06-06T13:17:52.210 回答