这是打开拨号器进行呼叫或发送消息的唯一方法吗?
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:+%@",phoneNumber]]];
如果是。那么这个支持会从 ios3 到 ios6(beta)。
如果不。那么任何人都可以提供一些示例代码。(如果有任何私有api可以做到这一点,请提及)
如果有单独的功能可用于发送短信和拨打电话,请也告诉我。
在带有 ios 4.2.6 的 ipad 1 中,以下代码不起作用
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"sms:9190432097420"]]];
并且
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:9190432097420"]]]
wr 问题出在哪里