我正在使用以下代码拨打电话。
@IBAction func phoneButtonAction(sender: AnyObject) {
let phone = "tel://123456789"
let url:NSURL = NSURL(string:phone)!
UIApplication.sharedApplication().openURL(url)
}
此功能即时呼叫所需的号码。 询问用户他是否确定要打电话的最佳做法是什么。
非常感谢帮助。
答案 0 :(得分:1)
正如用户maddy的回答,telprompt做了这个伎俩。
@IBAction func phoneButtonAction(sender: AnyObject) {
let phone = "telprompt://123456789"
let url:NSURL = NSURL(string:phone)!
UIApplication.sharedApplication().openURL(url)
}