gpt4 book ai didi

ios - 重新加载 UIWebView 使其空白

转载 作者:行者123 更新时间:2023-11-29 11:00:12 25 4
gpt4 key购买 nike

我正在使用以下方法在 UIWebView 中加载网页

 [NSURLConnection sendAsynchronousRequest:request
queue:loadingQueue
completionHandler:^(NSURLResponse *response,
NSData *data,
NSError *error) {
if(!error) {
[_webView loadData: data
MIMEType: [response MIMEType]
textEncodingName: [response textEncodingName]
baseURL:nil];
}
}];

首先,有几页根本没有加载图像。其次,当我稍后通过

刷新页面时
      [_webView reload];

Web View 变为空白。

有人知道这里发生了什么吗?

TIA,尼克尔

最佳答案

I am loading a webpage in a UIWebView using the following method [NSURLConnection sendAsynchronousRequest

好吧,不要。 UIWebView 已经知道如何从互联网上获取数据,并异步加载它的请求。因此,只需通过调用 loadRequest: 将请求交给 UIWebView。现在坐等委托(delegate)消息到达。如果有问题,委托(delegate)消息会告诉您。

关于ios - 重新加载 UIWebView 使其空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16268143/

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