一部の https リンクが WebView をロードしない理由。一部の https URL が Safari ブラウザーで完全に読み込まれていることがわかりますが、同じ URL を webview で読み込もうとすると、読み込まれません。httpsに自己署名証明書があるためでしょうか?? 自己署名証明書を持つ WebView に URL を読み込めませんか?
編集:今、私は呼び出すことができます
- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
{
return YES;
}
- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
[challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];
}
それでも私の https URL は WebView に読み込まれません。