I have a WebView and am supplying it with content. What I would like to prevent is the WebView from loading images, etc. based on the content I have supplied which it needs to obtain from external sites on the internet. What I want to do is to prevent the WebView from communicating over the internet to obtain any resources and to only display what I have provided.
What I thought might work is to return nil from:
-webView:resource:willSendRequest:redirectResponse:fromDataSource: but, images, etc. are still loaded from external sites.