我想知道UIWebView
从标准接收 HTML 时如何处理图像NSURLRequest
。例如,如果我有以下 HTML;
<body>
<!-- header -->
<header>
<div class="container">
<img src="images/logo.jpg" WIDTH="500" HEIGHT="60" alt="pingpong">
</div>
</header>
// then the rest of the site (txt, links, more pics etc)
</body>
因此,如果我要像这样对该 HTML 提出以下请求,请考虑上面的 HTML;
- (void)viewDidLoad {
NSString *urlAddress = @"http://www.myurl.com";
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
}
当 'webView' 通过loadRequest
调用接收到 'requestObj' 时,webview 如何处理在 HTML 中找到的图像?
<img src="images/logo.jpg" WIDTH="500" HEIGHT="60" alt="pingpong">
当它遇到这样的图像时会做什么UIWebView
?它如何获取图像数据/文件等?