最佳答案
我试着拨打一个号码,不是用特定的号码,而是一个在变量中被调用的号码,或者至少告诉它把你手机里的号码调出来。在变量中调用的这个数字是我通过使用解析器或从网站 sql 中获取的数字。我做了一个按钮,试图调用电话号码存储在一个函数的变量,但无济于事。什么都行,谢谢!
func callSellerPressed (sender: UIButton!){
//(This is calls a specific number)UIApplication.sharedApplication().openURL(NSURL(string: "tel://######")!)
// This is the code I'm using but its not working
UIApplication.sharedApplication().openURL(NSURL(scheme: NSString(), host: "tel://", path: busPhone)!)
}