Slide 14
Slide 14 text
14
URLSessionDelegateをextensionで実装し、URLSessionClientの関数を
呼び出すと強参照になる。
extension URLSessionClient: URLSessionDelegate {
func urlSession(_ session: URLSession,
didReceive challenge: URLAuthenticationChallenge,
completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
myMethod(didReceive: challenge, completion: completionHandler)
}
}
4.URLSessionDelegateのextension実装