我需要用fork()创建这个进程树

时间:2018-05-20 13:34:24

标签: fork

enter image description here

我只知道fork()基础知识,而且我是新手。任何帮助将不胜感激

1 个答案:

答案 0 :(得分:0)

func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
    let cred = URLCredential(trust: challenge.protectionSpace.serverTrust!)
    completionHandler(.useCredential, cred)
}