我正在使用以下方法在 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 视图变为空白。
有谁知道这里发生了什么?
TIA,尼基尔