SWIFT
WKWebView Phone Call
HiroDaegu
2023. 3. 1. 17:46
728x90
SMALL
...
// HTML
<a href="tel:1544-7788">전화</a>
...
...
// Swift
extension ViewController: WKNavigationDelegate {
func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
if let url = navigationAction.request.url {
if url.scheme == "tel" {
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
decisionHandler(.cancel)
return
}
}
decisionHandler(.allow)
return
}
}
...
728x90
LIST