是否有方法确定正在运行应用程序的设备。如果可能的话,我想区分iPhone和iPod Touch。


当前回答

NSString *deviceType = [[UIDevice currentDevice] systemName];

我可以保证,上述建议将适用于iOS 7及以上版本。我相信iOS 6也能运行。但我不确定。

其他回答

我已经创建了一个扩展,让你有3个级别的识别:

设备类型 按英寸划分iPhone/iPad的类型 设备型号

它会随着最新的iOS设备进行更新

UIDeviceDetector

我知道答案已经被勾选了,但为了将来的参考,你可以总是使用设备屏幕大小来找出它是哪台设备:

if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {

    CGSize result = [[UIScreen mainScreen] bounds].size;

    if (result.height == 480) {
        // 3.5 inch display - iPhone 4S and below
        NSLog(@"Device is an iPhone 4S or below");
    }

    else if (result.height == 568) {
        // 4 inch display - iPhone 5
        NSLog(@"Device is an iPhone 5/S/C");
    }

    else if (result.height == 667) {
        // 4.7 inch display - iPhone 6
        NSLog(@"Device is an iPhone 6");
    }

    else if (result.height == 736) {
        // 5.5 inch display - iPhone 6 Plus
        NSLog(@"Device is an iPhone 6 Plus");
    }
} 

else if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
       // iPad 9.7 or 7.9 inch display.
       NSLog(@"Device is an iPad.");
}

请随意使用这个类(gist @ github)

代码已删除并重新定位到 https://gist.github.com/1323251

更新(01/14/11)

显然,这段代码现在有点过时了,但它肯定可以使用Brian Robbins提供的这个线程上的代码进行更新,其中包括更新模型的类似代码。谢谢你在这个帖子上的支持。

我进一步将大的“isEqualToString”块转换为设备类型、生成和逗号后的其他限定符(我称之为子生成)的位掩码分类。它被包装在一个类中,带有一个单例调用SGPlatform,避免了大量重复的字符串操作。代码可用https://github.com/danloughney/spookyGroup

这个类允许你做这样的事情:

if ([SGPlatform iPad] && [SGPlatform generation] > 3) {
    // set for high performance
}

and

switch ([SGPlatform deviceMask]) {
case DEVICE_IPHONE:
    break;
case DEVICE_IPAD:
    break;
case DEVICE_IPAD_MINI:
    break;
}

设备的分类在platformBits方法中。这个方法对于本文的读者来说应该非常熟悉。我根据设备的类型和年代对其进行了分类,因为我最感兴趣的是整体性能,但源代码可以调整以提供您感兴趣的任何分类,如视网膜屏幕、网络功能等。

你可以在GitHub上查看GBDeviceInfo,也可以通过CocoaPods获得。它提供了简单的API来检测各种属性,支持所有最新的设备:

设备的家庭

[GBDeviceInfo deviceDetails]。family == GBDeviceFamilyiPhone;

设备模型

[GBDeviceInfo deviceDetails]。model == GBDeviceModeliPhone6。

欲了解更多,请参阅Readme。