I have searched hours and hours for a solution to prevent UIWebView from downloading images when it renders a page. The webview is hidden, so the user can't see it anyway. This webview queries a server and receives an html page as a result. I have it render the html so that i can inject and run a piece of javascript into the page so that i can extract some information from it. Everything in my code works perfectly with the exception that the code to run the javascript doesn't run until webViewDidFinishLoad is called. This isn't called until after ALL images have been downloaded... this can be excessively slow on the cellular network. The number of images depend upon the query. I don't have access to the code on the server, so i can't stop it from returning images. Any solution or suggestion is appreciated. Thanks!!