美文网首页
libc++abi.dylib: terminating wit

libc++abi.dylib: terminating wit

作者: 沐时 | 来源:发表于2018-05-22 10:37 被阅读23次

    用wkwebview加载网络地址,一直提示这个问题

    断点奔溃到Uiviewcontroller loadviewifrequired

    但是也找不到原因,在plist文件加了所有的域名或者ip地址还是,最后把所有的代理方法全部打log.找到问题

     @available(iOS 8.0, *)
        func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Swift.Void)
        {
             XLLog(message: "")
            let cred = URLCredential.init(trust: challenge.protectionSpace.serverTrust!)
            completionHandler(.useCredential, cred)
            
        }
    

    相关文章

      网友评论

          本文标题:libc++abi.dylib: terminating wit

          本文链接:https://www.haomeiwen.com/subject/vachjftx.html