<iOS>ASIHTTPRequest和ASIDownloadCache实现本地缓存

需要注意的是,要做缓存的Http请求必须用get方法来获取数据。

1、设置全局的Cache
    在AppDelegate.h中添加一个全局变量

@interface AppDelegate : UIResponder <UIApplicationDelegate> 
{ 
    ASIDownloadCache *myCache; 
} 
@property (strong, nonatomic) UIWindow *window; 
@property (nonatomic,retain) ASIDownloadCache *myCache; 

在AppDelegate.m中的- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法中添加如下代码

复制代码
//自定义缓存 
ASIDownloadCache *cache = [[ASIDownloadCache alloc] init]; 
self.myCache = cache; 
[cache release]; 
     
//设置缓存路径 
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
NSString *documentDirectory = [paths objectAtIndex:0]; 
[self.myCache setStoragePath:[documentDirectory stringByAppendingPathComponent:@"resource"]]; 
[self.myCache setDefaultCachePolicy:ASIOnlyLoadIfNotCachedCachePolicy]; 
复制代码

在AppDelegate.m中的dealloc方法中添加如下语句

[myCache release]; 

2、设置缓存策略

    在实现ASIHTTPRequest请求的地方设置request的存储方式,代码如下

复制代码
NSString *str = @"http://....../getPictureNews.aspx"; 
NSURL *url = [NSURL URLWithString:str]; 
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url]; 
//获取全局变量 
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; 
//设置缓存方式 
[request setDownloadCache:appDelegate.myCache]; 
//设置缓存数据存储策略,这里采取的是如果无更新或无法联网就读取缓存数据 
[request setCacheStoragePolicy:ASICachePermanentlyCacheStoragePolicy]; 
request.delegate = self; 
[request startAsynchronous]; 
复制代码

3、清理缓存数据

 我在这里采用的是手动清理数据的方式,在适当的地方添加如下代码,我将清理缓存放在了应用的设置模块:

AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; 
[appDelegate.myCache clearCachedResponsesForStoragePolicy:ASICachePermanentlyCacheStoragePolicy];

这里清理的是ASICachePermanentlyCacheStoragePolicy这种存储策略的缓存数据,如果更换其他的参数的话,即可清理对应存储策略的缓存数据。

posted @   白条围巾  阅读(5071)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 25岁的心里话
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示