我们可以像
中一样检索iDevice Model设置 - >常规 - >关于 - >模型= MD662F ?
答案 0 :(得分:0)
不幸的是,没有。 UIDevice
有“模特”属性,但只返回@“iPhone”和@“iPod touch”等。
UIDevice *currentDevice = [UIDevice currentDevice];
NSString *model = [currentDevice model];
NSLog(@"Device Model: %@", model);