gpt4 book ai didi

iPhone 不调用指定号码,我想知道为什么?

转载 作者:行者123 更新时间:2023-11-28 23:11:18 25 4
gpt4 key购买 nike

我有这段代码,

NSString *number = [NSString stringWithFormat:@"tel://%@", phoneNumber];
NSLog(@"%@", number);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:number]];

NSLog 输出是,

2011-11-21 15:32:49.621 Tittle-Tattle[1743:707] tel://0413 883 245
2011-11-21 15:32:56.914 Tittle-Tattle[1743:707] tel://0413 873 245

一切似乎都很好,但是我的应用程序没有切换到电话应用程序并开始调用这个号码。任何建议。

谢谢

最佳答案

url 字符串必须没有任何空格。使用您的示例,代码将显示为:

NSString *number = [[NSString stringWithFormat:@"tel://%@", phoneNumber] stringByReplacingOccurencesOfString:@" " withString:@""];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:number]];

关于iPhone 不调用指定号码,我想知道为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8207324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com