How to clear UIWebView cache?

前端 未结 9 1777
闹比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:25

    //to prevent internal caching of webpages in application
    NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil];
    [NSURLCache setSharedURLCache:sharedCache];
    [sharedCache release];
    sharedCache = nil;
    

    try using this. It will clear the url cache memory of your application.

提交回复
热议问题