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 に答える