iOS学习笔记22—ASIHTTPRequest和ASIDownloadCache实现本地缓存

     

         为了节约流量,同时也是为了更好的用户体验,目前很多应用都使用本地缓存机制,其中以网易新闻的缓存功能最为出色。我自己的应用也想加入本地缓存的功能,于是我从网上查阅了相关的资料,发现总体上说有两种方法。一种是自己写缓存的处理,一种是采用ASIHTTPRequest中的ASIDownloadCache。根据我目前的技术水平和时间花费,我果断选择了后者,事实证明效果也很不错。下面说一下实现方法:


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

  1. @interface AppDelegate : UIResponder <UIApplicationDelegate> {  
  2.     ASIDownloadCache *myCache;  
  3. }  
  4. @property (strong, nonatomic) UIWindow *window;  
  5. @property (nonatomic,retain) ASIDownloadCache *myCache;  

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

  1. //自定义缓存  
  2. ASIDownloadCache *cache = [[ASIDownloadCache alloc] init];  
  3. self.myCache = cache;  
  4. [cache release];  
  5.       
  6. //设置缓存路径  
  7. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
  8. NSString *documentDirectory = [paths objectAtIndex:0];  
  9. [self.myCache setStoragePath:[documentDirectory stringByAppendingPathComponent:@"resource"]]; 

  10. ASIOnlyLoadIfNotCachedCachePolicy : / /如果缓存的数据存在,则使用它,即使它是陈旧的。这意味着请求不会跟服务器除非资源他们要求不是在缓存中
  11. [self.myCache setDefaultCachePolicy:ASIOnlyLoadIfNotCachedCachePolicy];  
    

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


  1. [myCache release];  

    到这里为止,就完成了全局变量的声明。

    2、设置缓存策略

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


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

    3、清理缓存数据

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


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


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



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值