如何限制UIWebview下载图片?
如何限制 UIWebView 不下载任何类型的图像?
问候, 约翰
How can i restrict UIWebView not to download any type of images?
Regards,
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何限制 UIWebView 不下载任何类型的图像?
问候, 约翰
How can i restrict UIWebView not to download any type of images?
Regards,
John
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我现在可以想到两种方法:
1。 NSURLProtocol 子类
子类并注册 NSURLProtocol 来拦截 http 请求,对于以已知图像扩展名结尾的 url,不发出请求,只返回一个空字符串作为正文。这很容易出错,例如:
对于请求图像资源有效,并且 URL 没有提示任何内容。您当然可以更进一步进行下载,或者至少启动请求并拦截收到的标头并检查返回的 mime 类型甚至文件正文。
2.在渲染之前解析和过滤 html
第二种解决方案更简单一些:
不是直接在webview中下载html,而是使用NSURLConnection或ASIHTTPRequest来获取页面。现在你可以解析它并替换所有img标签的src属性的内容。
尽管如此,这仍然不会阻止图像加载 css 等背景。
I can think of two ways right now:
1. NSURLProtocol subclass
Subclass and register NSURLProtocol to intercept http requests, and for urls ending in known image extensions just don't make the request, just return an empty string as body. This is error prone as for example:
is valid to request image resources and the URL doesn't hint anything. You could of course go one step further and download, or at least start the request and intercept the headers received and check for the mime type returned or even the file's body.
2. Parse and filter html before rendering
The second solution is a bit easier:
Download the html not directly in the webview, but instead use NSURLConnection or ASIHTTPRequest to get the page. Now you can parse it and replace the content of the src attribute of all img tags.
Still this won't prevent images being loaded with css for backgrounds for example.