当我们点击文字视图中的数字时,用户点击弹出窗口中的致电时,是否有回调标识?
func textView(textView: UITextView, shouldInteractWithURL URL: NSURL, inRange characterRange: NSRange) -> Bool
上述功能将帮助我确定在UITextView中点击了一个链接,而是否有特定的回调来识别是否点击了呼叫或取消是点击
答案 0 :(得分:4)
使用委托方法:
func textView(textView: UITextView, shouldInteractWithURL URL: NSURL, inRange characterRange: NSRange) -> Bool {
print("Phone \(URL)")
return false
}
不要忘记连接textView委托。
self.textView.delegate = self
然后您可以添加自定义UIAlertController来调用或取消。
编辑:
这是完整的代码:
func textView(textView: UITextView, shouldInteractWithURL URL: NSURL, inRange characterRange: NSRange) -> Bool {
if (URL.scheme == "tel"){
let phoneNumber = URL.absoluteString.stringByReplacingOccurrencesOfString("tel:", withString: "")
let alert = UIAlertController(title: phoneNumber, message: nil, preferredStyle: .Alert)
alert.addAction(UIAlertAction(title: "Call", style: .Default, handler: { (alert) in
if UIApplication.sharedApplication().canOpenURL(URL) {
UIApplication.sharedApplication().openURL(URL)
}
}))
alert.addAction(UIAlertAction(title: "Cancel", style: .Cancel, handler: { (alert) in
print("User Canceld")
}))
presentViewController(alert, animated: true, completion: nil)
return false
}
return true
}
最后一件事,在你的info.plist中添加:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>tel</string>
</array>