谁能告诉我在swift5下使用Alamofire时如何无条件信任证书,谢谢。
以下是我的答案,希望对以后遇到相同问题的人有所帮助。
扩展名ViewController:URLSessionDelegate {公共函数urlSession(_会话:URLSession,didReceive挑战:URLAuthenticationChallenge,complementHandler:@转义(URLSession.AuthChallengeDisposition,URLCredential?)->无效){让urlCredential = URLCredential(信任:Challenge.protectionSpace.serverTrust!)completeHandler(.useCredential,urlCredential)}}