我正在尝试将一个安全的HTTP URL加载到UIWebView中,但它会抛出“不受信任的证书错误”,即错误-1202。 NSURLDomainError。
我在stackoverflow上搜索并找到了这个解决方案并实现了相同的: UIWebView to view self signed websites (No private api, not NSURLConnection) - is it possible?
根据此解决方案收到回调后: - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response;
我们再次将安全的http网址加载到webview,因为我们已经完成了身份验证通过, 它加载数据。而且,服务器使用的凭证是我个人的crendetials,所以我提到NSURL NSURLCredential * newCredential = [NSURLCredential credentialWithUser:@“username” 密码:@“密码” 持久性:NSURLCredentialPersistenceForSession];
但我的问题是,它只是进入某种循环,我无法获得任何UIWebView的回调。任何解决方案或任何想法会出现什么问题?