How to clear UIWebView cache?

前端 未结 9 1778
闹比i
闹比i 2020-11-29 04:47

I need UIWebView to display some local .webarchive file. But images there have same names, so UIWebView shows only one image all the time. How can I clear the cache?

9条回答
  •  青春惊慌失措
    2020-11-29 05:09

    Use following code:

    NSString *cacheDir=[NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0];  
      [[NSFileManager defaultManager]removeItemAtPath:cacheDir error:nil];
    

提交回复
热议问题