に示されているように、iDevice モデルを取得できますか
設定 -> 一般 -> バージョン情報 -> モデル = MD662F ?
残念だけど違う。UIDevice
「モデル」プロパティがありますが、@”iPhone” や @”iPod touch” などのみを返します。
UIDevice *currentDevice = [UIDevice currentDevice];
NSString *model = [currentDevice model];
NSLog(@"Device Model: %@", model);