gpt4 book ai didi

ios - UIWebView无法加载(错误-999)

转载 作者:行者123 更新时间:2023-12-03 07:59:44 24 4
gpt4 key购买 nike

当我开始加载UIWebView时,出现以下错误:

2015-06-12 10:24:08.768 App[7034:692175] Error Domain=NSURLErrorDomain Code=-999 "The operation couldn’t be completed. (NSURLErrorDomain error -999.)" UserInfo=0x165f3950 {NSErrorFailingURLKey=https://google.com/, NSErrorFailingURLStringKey=https://google.com/}

而且它永远不会完成加载。奇怪的是:当我在模拟器上执行它时,它就可以正常工作。另外,当我手动重新加载Webview时,它也可以正常工作。

因此,这意味着该URL及其参数就可以了( https://google.com/不是实际的URL)。

在网上我找到了解决方法:
if([error code] == NSURLErrorCancelled){
return;
}else{
//Actual error handling
}

确实会被调用,但不能解决问题

编辑:
_
webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, self.infoView.frame.size.width, self.infoView.frame.size.height)];
[self.infoView addSubview:_webView];
[_webView setHidden:YES];
_webView.scalesPageToFit = YES;
_webView.delegate = self;
_webView.scrollView.scrollEnabled = NO;
_webView.scrollView.bounces = NO;
[_webView setUserInteractionEnabled:YES];
[_webView addSubview:invisView];
[_webView loadRequest:[self getRequest]];

最佳答案

这似乎是iOS中使用HTTPS请求的错误。对我来说,一种解决方法是在给出错误时重做请求。第二次请求似乎可以很好地加载,并且现在可以正常运行了。

关于ios - UIWebView无法加载(错误-999),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30798768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com