7

可能重复:
iOS - 检测设备是否支持电话?

我正在编写一个 iPhone 应用程序,它提供一个按钮来拨打电话号码。我正在使用如下代码以tel:通常的方式使用 URL 拨打号码:

NSURL* contactTelURL = [NSURL
                        URLWithString:[NSString
                                       stringWithFormat:@"tel:%@",
                                       contactTel]];
[[UIApplication sharedApplication] openURL:contactTelURL];

它在真正的 iPhone 上运行良好,但我只是在模拟器中收到“不支持的 URL”警报。可能这也会发生在 iPod Touch 上,尽管我还没有测试过。在不会拨打电话的设备上运行时删除按钮会很好。

有没有办法以编程方式检测 Cocoa Touch 设备是否可以拨打电话?

4

4 回答 4

40

从我的 iPhone 应用程序拨打电话的诺亚威瑟斯彭

模拟器不支持很多 iOS 的 URL 方案,包括用于电话、地图、Youtube 和 SMS 应用程序的 URL 方案。iPod touch 和 iPad 等不具备电话功能的设备也是如此。在通过 -openURL: 使用任何 URL 方案之前,您应该使用 -canOpenURL: 检查对该方案的支持,这将根据当前设备是否支持您正在使用的 URL 方案返回 YES 或 NO

因此查询[[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tel://"]] 以了解设备是否可以拨打电话。

于 2010-08-27T09:35:21.950 回答
7

来自iphonedevelopment.blogspot.com

#import <sys/utsname.h>

enum {
    MODEL_IPHONE_SIMULATOR,
    MODEL_IPOD_TOUCH,
    MODEL_IPHONE,
    MODEL_IPHONE_3G
};

@interface DeviceDetection : NSObject

+ (uint) detectDevice;
+ (NSString *) returnDeviceName:(BOOL)ignoreSimulator;

@end


@implementation DeviceDetection

+ (uint) detectDevice {
    NSString *model= [[UIDevice currentDevice] model];

    // Some iPod Touch return "iPod Touch", others just "iPod"

    NSString *iPodTouch = @"iPod Touch";
    NSString *iPodTouchLowerCase = @"iPod touch";
    NSString *iPodTouchShort = @"iPod";

    NSString *iPhoneSimulator = @"iPhone Simulator";

    uint detected;

    if ([model compare:iPhoneSimulator] == NSOrderedSame) {
        // iPhone simulator
        detected = MODEL_IPHONE_SIMULATOR;
    } else if ([model compare:iPodTouch] == NSOrderedSame) {
        // iPod Touch
        detected = MODEL_IPOD_TOUCH;
    } else if ([model compare:iPodTouchLowerCase] == NSOrderedSame) {
        // iPod Touch
        detected = MODEL_IPOD_TOUCH;
    } else if ([model compare:iPodTouchShort] == NSOrderedSame) {
        // iPod Touch
        detected = MODEL_IPOD_TOUCH;
    } else {
        // Could be an iPhone V1 or iPhone 3G (model should be "iPhone")
        struct utsname u;

        // u.machine could be "i386" for the simulator, "iPod1,1" on iPod Touch, "iPhone1,1" on iPhone V1 & "iPhone1,2" on iPhone3G

        uname(&u);

        if (!strcmp(u.machine, "iPhone1,1")) {
            detected = MODEL_IPHONE;
        } else {
            detected = MODEL_IPHONE_3G;
        }
    }
    return detected;
}


+ (NSString *) returnDeviceName:(BOOL)ignoreSimulator {
    NSString *returnValue = @"Unknown";

    switch ([DeviceDetection detectDevice]) {
        case MODEL_IPHONE_SIMULATOR:
            if (ignoreSimulator) {
                returnValue = @"iPhone 3G";
            } else {
                returnValue = @"iPhone Simulator";
            }
            break;
        case MODEL_IPOD_TOUCH:
            returnValue = @"iPod Touch";
            break;
        case MODEL_IPHONE:
            returnValue = @"iPhone";
            break;
        case MODEL_IPHONE_3G:
            returnValue = @"iPhone 3G";
            break;
        default:
            break;
    }        
    return returnValue;
}

@end
于 2009-05-24T21:10:31.680 回答
0

这是我用来检查设备型号是手机而不是模拟器的简单代码片段,以确保它可以拨打电话。

if ([[[UIDevice currentDevice] model] rangeOfString:@"Phone"].location != NSNotFound &&
    [[[UIDevice currentDevice] model] rangeOfString:@"Simulator"].location == NSNotFound ) {
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", number]  ] ];
}
于 2011-04-12T04:56:10.920 回答
-1

您可以查询[[UIDevice currentDevice] model],并检查它是否是 iPhone。

于 2009-05-24T15:32:09.443 回答