美文网首页
iOS离线数据缓存读取释放

iOS离线数据缓存读取释放

作者: JaXz | 来源:发表于2016-05-19 22:05 被阅读392次

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

1.保存到沙盒的代码
+ (void)saveCache:(int)type andID:(int)_id andString:(NSString *)str;  
{  
NSUserDefaults * setting = [NSUserDefaults standardUserDefaults];  
NSString * key = [NSString stringWithFormat:@"detail-%d-%d",type, _id];  
[setting setObject:str forKey:key];  
[setting synchronize];  
 }
读取之前首先根据type和Id判断本地是否有  
+ (NSString *)getCache:(int)type andID:(int)_id  
  {  
 NSUserDefaults * settings = [NSUserDefaults          standardUserDefaults];  
 NSString *key = [NSString stringWithFormat:@"detail-%d-%d",type,  _id];  
   NSString *value = [settings objectForKey:key];  
return value;  
}  
如果沙盒里面有数据
NSString *value = [Tool getCache:5 andID:self.QiuTime];  
    if (value) {  
        NSDictionary *backdict = [value JSONValue];  
        if ([backdict objectForKey:@"items"]) {  
            NSArray *array=[NSArray arrayWithArray:[backdict objectForKey:@"items"]];  
            for (NSDictionary *qiushi in array) {  
                QiuShi *qs=[[[QiuShi alloc]initWithDictionary:qiushi] autorelease];  
                [self.list addObject:qs];  
            }  
        }  
        [self.tableView reloadData];  
     }  
     [self.tableView tableViewDidFinishedLoadingWithMessage:@"数据全部加载完了.."];  
    self.tableView.reachedTheEnd  = YES;  

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

 1、设置全局的Cache
在AppDelegate.h中添加一个全局变量
@interface AppDelegate : UIResponder   
 {  
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];

相关文章

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

    iOS开发本地缓存(数据离线缓存、读取、释放)_异客_新浪博客

  • iOS离线数据缓存读取释放

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

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

    本人ios初学者,为自己学习方便,复制各位大神的学习性文章放在自己简书里,仅作为自己学习方便使用,如果作者疑此行为...

  • 【Object-C】简单实现plist离线缓存数据

    iOS---数据离线缓存 离线缓存 为了用户的体验,不需要每次打开App都加载新数据,或者重新请求数据,因此需要把...

  • SQLite

    iOS开发数据库篇—SQLite简单介绍 一、离线缓存在项目开发中,通常都需要对数据进行离线缓存的处理,如新闻数据...

  • iOS开发数据库篇—SQLite简单介绍

    iOS开发数据库篇—SQLite简单介绍 一、离线缓存 在项目开发中,通常都需要对数据进行离线缓存的处理,如新闻数...

  • 数据库之移动端SQLite3

    iOS开发数据库篇-SQLite简单介绍一、应用场景-离线缓存在项目开发中,通常都需要对数据进行离线缓存的处理,如...

  • 【ThirdParty】FMDB

    iOS数据存储 在项目开发中,通常都需要对数据进行离线缓存的处理,离线缓存一般都是把数据保存到项目的沙盒中。有以下...

  • SqlLite数据库

    一、数据库 在项目开发中,通常都需要对数据进行离线缓存的处理,如新闻数据的离线缓存等。离线缓存一般都是把数据保存到...

  • iOS学习笔记16-数据库SQLite

    一、数据库 在项目开发中,通常都需要对数据进行离线缓存的处理,如新闻数据的离线缓存等。离线缓存一般都是把数据保存到...

网友评论

      本文标题:iOS离线数据缓存读取释放

      本文链接:https://www.haomeiwen.com/subject/gcigrttx.html