Phonegap - 在ios应用程序中清除缓存

时间:2013-04-29 20:33:27

标签: ios cordova clear-cache

在我的phonegap应用程序中,我有一个功能,可以下载新的JS和HTML文件并更新到www文件夹中。更新后,我需要清除旧缓存的js& html文件(不杀死应用程序和重新启动)。在Android中,我调用DroidGap.appView.clearCache(true)来执行此操作。但我在iOS中没有找到任何类似的方法。我试过几种方法:

删除共享缓存

[[NSURLCache sharedURLCache] removeAllCachedResponses];
NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];

清除ASIHTTPRequest的缓存(我使用此lib)

[[ASIDownloadCache sharedCache] clearCachedResponsesForStoragePolicy:ASICachePermanentlyCacheStoragePolicy];

但他们都无法解决这个问题。有人可以帮帮我吗?我非常感谢您提供的任何帮助。

0 个答案:

没有答案