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」が呼び出しを介して「requestObj」を受け取るloadRequestと、webview は HTML で見つかった画像をどのように処理しますか?
<img src="images/logo.jpg" WIDTH="500" HEIGHT="60" alt="pingpong">
UIWebViewこのような画像に遭遇したときはどうしますか? 画像データ/ファイルなどをどのように取得しますか?