0

我们可以像中所示那样检索 iDevice 模型吗

设置->常规->关于->型号 = MD662F ?

4

1 回答 1

0

抱歉不行。UIDevice有一个“模型”属性,但只会返回@“iPhone”和@“iPod touch”等。

UIDevice *currentDevice = [UIDevice currentDevice];
NSString *model = [currentDevice model];
NSLog(@"Device Model: %@", model);
于 2013-01-16T01:23:30.590 回答