数据缓存

iOS开发本地缓存(数据离线缓存、读取、释放)

2016-03-10  本文已影响1401人  bu再等

本人ios初学者,为自己学习方便,复制各位大神的学习性文章放在自己简书里,仅作为自己学习方便使用,如果作者疑此行为侵权,请随时联系本人删除,如有共同学习者复制此文章,请注明原出处


为了节约流量,同时也是为了更好的用户体验,目前很多应用都使用本地缓存机制,其中以网易新闻的缓存功能最为出色。我自己的应用也想加入本地缓存的功能,于是我从网上查阅了相关的资料,发现总体上说有两种方法。一种是自己写缓存的处理,一种是采用ASIHTTPRequest中的ASIDownloadCache。

方法一:一般将服务器第一次返回的数据保存在沙盒里面。这样在手机断网的情况下可以从本地读取数据了。

1.保存到沙盒的代码:


+(void)saveCache:(int)typeandID:(int)_idandString:(NSString*)str;

{

NSUserDefaults*setting=[NSUserDefaultsstandardUserDefaults];

NSString*key=[NSStringstringWithFormat:@"detail-%d-%d",type,_id];

[settingsetObject:strforKey:key];

[settingsynchronize];

}

2.读取本地沙盒的代码

读取之前首先根据type和Id判断本地是否有


+(NSString*)getCache:(int)typeandID:(int)_id

{

NSUserDefaults*settings=[NSUserDefaultsstandardUserDefaults];

NSString*key=[NSStringstringWithFormat:@"detail-%d-%d",type,_id];

NSString*value=[settingsobjectForKey:key];

returnvalue;

}

如果沙盒里面有数据


NSString*value=[ToolgetCache:5andID:self.QiuTime];

if(value){

NSDictionary*backdict=[valueJSONValue];

if([backdictobjectForKey:@"items"]){

NSArray*array=[NSArrayarrayWithArray:[backdictobjectForKey:@"items"]];

for(NSDictionary*qiushiinarray){

QiuShi*qs=[[[QiuShialloc]initWithDictionary:qiushi]autorelease];

[self.listaddObject:qs];

}

}

[self.tableViewreloadData];

}

[self.tableViewtableViewDidFinishedLoadingWithMessage:@"数据全部加载完了.."];

self.tableView.reachedTheEnd=YES;

方法二:使用ASIHTTPRequest和ASIDownloadCache实现本地缓存

1、设置全局的Cache

在AppDelegate.h中添加一个全局变量

@interfaceAppDelegate:UIResponder

{

ASIDownloadCache*myCache;

}

@property(strong,nonatomic)UIWindow*window;

@property(nonatomic,retain)ASIDownloadCache*myCache;

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

//自定义缓存

ASIDownloadCache*cache=[[ASIDownloadCachealloc]init];

self.myCache=cache;

[cacherelease];

//设置缓存路径

NSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);

NSString*documentDirectory=[pathsobjectAtIndex:0];

[self.myCachesetStoragePath:[documentDirectorystringByAppendingPathComponent:@"resource"]];

[self.myCachesetDefaultCachePolicy:ASIOnlyLoadIfNotCachedCachePolicy];

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

[myCacherelease];

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

2、设置缓存策略

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

NSString*str=@"http://....../getPictureNews.aspx";

NSURL*url=[NSURLURLWithString:str];

ASIHTTPRequest*request=[ASIHTTPRequestrequestWithURL:url];

//获取全局变量

AppDelegate*appDelegate=[[UIApplicationsharedApplication]delegate];

//设置缓存方式

[requestsetDownloadCache:appDelegate.myCache];

//设置缓存数据存储策略,这里采取的是如果无更新或无法联网就读取缓存数据

[requestsetCacheStoragePolicy:ASICachePermanentlyCacheStoragePolicy];

request.delegate=self;

[requeststartAsynchronous];

3、清理缓存数据

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

AppDelegate*appDelegate=[[UIApplicationsharedApplication]delegate];

[appDelegate.myCacheclearCachedResponsesForStoragePolicy:ASICachePermanentlyCacheStoragePolicy];

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

(参考:http://zycto.blog.163.com/blog/static/17152400201110221340738/

上一篇 下一篇

猜你喜欢

热点阅读