I'm facing the same problem. Has anyone fix this?
Post
Replies
Boosts
Views
Activity
For me, If I try to run this on a simulator project builds and compiles fine but for devices, it shows this error. IDK what's causing this for physical devices!!
This issue repeatedly happing on Xcode 14.0.1. I can not rollback to 13.4 as it seems Ventura doesn't support that version. Is there any solution for this issue?
I think this may work -
extension CCVAddCardViewController: WKUIDelegate, WKNavigationDelegate {
func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
if let urlStr = navigationAction.request.url?.absoluteString {
print(urlStr)
}
decisionHandler(.allow)
}
}