我用這個代碼:的UIWebView + AFNetworking問題
webView.loadRequest(request!, progress: nil, success: { (responce, html) in
print("\n\n\nsuccess responce = ", html)
return html
}, failure: { (error) in
print("\n\n\nerror = ", error)
})
但我的服務器具有無效的SSL sertificate。所以我需要設置一個安全策略。之前,我做這樣的:
[AFHTTPRequestOperationManager manager].securityPolicy.allowInvalidCertificates = YES;
但AFNetworking 3沒有AFHTTPRequestOperationManager
類了。如何爲AFNetworking 3中的所有請求設置安全策略?
謝謝你,幫 –