我们如何在iOS设备上测试禁用网站缓存?

时间:2016-06-02 13:08:28

标签: ios caching

我在iOS设备上禁用了我的浏览器上的网站缓存,但我无法测试浏览器上是否禁用了网站缓存。 任何人都可以提出一种我可以测试它的方法。

1 个答案:

答案 0 :(得分:0)

用于在iOS设备上禁用Safari上的缓存

  1. 打开设置
  2. 导航到Safari>高级
  3. 启用Web Inspector
  4. 切换回Safari并加载网页
  5. 如果您使用浏览器组件(UIWebView等),则禁用iOS应用程序上的缓存:

    ObjC:

    // Remove and disable all URL Cache, but doesn't seem to affect the memory
    [[NSURLCache sharedURLCache] removeAllCachedResponses];
    [[NSURLCache sharedURLCache] setDiskCapacity:0];
    [[NSURLCache sharedURLCache] setMemoryCapacity:0];
    

    夫特:

    NSURLCache.sharedURLCache().removeAllCachedResponses()
    NSURLCache.sharedURLCache().diskCapacity = 0
    NSURLCache.sharedURLCache().memoryCapacity = 0