我如何从我的应用程序拨打电话至特定号码。
给我一些执行任务的逻辑或代码...

最佳答案

使用UIApplication的openURL:方法:

[[UIApplication sharedApplication] openURL:
       [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phoneNumber]]];

10-08 02:51