iOS中通过UIWebView查看图片或文档时会被缓存吗?
通常,当我们通过浏览器加载图像或文档时,图像会缓存在临时文件夹中。 Mobile safari 和 MObile 中的其他浏览器的情况是否相同?
如果是这种情况,如果手机已root,用户是否能够访问它们? iOS中通过UIWebView查看图片或文档时会被缓存吗?
Typically when we load a image or document through a browser, the image gets cached in a temp folder. Is this the same case for Mobile safari and other browsers in MObile?
And if that is the case, if the phone is rooted, will user be able to access them?
Will an image or document be cached when it is viewed through UIWebView in iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,执行缓存的类是 NSURLRequest。 缓存
您可以删除特定请求或所有请求的
,或者在执行任何请求之前设置空缓存
No, the class doing the caching is NSURLRequest. You can remove the cache for a particular request
or for all of them
or set an empty cache before performing any request