我实际上是在尝试通过 openURL 拨打 2 位电话号码(适用于 3 位以上的数字)。
在 IOS 6 上,我使用了 hack,如下所示:
if (self.numberToCall.length < 3) {
self.numberToCall = [NSString stringWithFormat:@"%@?000", self.numberToCall];
}
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", self.numberToCall]]];
不能在 IOS 7 上工作(什么都不做)。
有人有解决方案吗?