Верно ли, что UIWebViewDelegate не контролирует запросы, сделанные с помощью XMLHttpRequest? Если да, есть ли способ отслеживать подобные запросы?
например. UIWebViewDelegate не понимает этого в -(BOOL) webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSMutableURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType;
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://www.google.com", true);
xhr.onreadystatechange=function() 
{
    if (xhr.readyState==4) 
    {
        alert(xhr.responseText);
    }
}
xhr.send();
