`
mmdev
  • 浏览: 12916103 次
  • 性别: Icon_minigender_1
  • 来自: 大连
文章分类
社区版块
存档分类
最新评论

IOS开发笔记(4)数据离线缓存与读取

 
阅读更多

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

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];
}

2.读取本地沙盒的代码

读取之前首先根据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;




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

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

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

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

  1. //自定义缓存
  2. ASIDownloadCache*cache=[[ASIDownloadCachealloc]init];
  3. self.myCache=cache;
  4. [cacherelease];
  5. //设置缓存路径
  6. NSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
  7. NSString*documentDirectory=[pathsobjectAtIndex:0];
  8. [self.myCachesetStoragePath:[documentDirectorystringByAppendingPathComponent:@"resource"]];
  9. [self.myCachesetDefaultCachePolicy:ASIOnlyLoadIfNotCachedCachePolicy];

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

  1. [myCacherelease];

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

2、设置缓存策略

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

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

3、清理缓存数据

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

  1. AppDelegate*appDelegate=[[UIApplicationsharedApplication]delegate];
  2. [appDelegate.myCacheclearCachedResponsesForStoragePolicy:ASICachePermanentlyCacheStoragePolicy];


这里清理的是ASICachePermanentlyCacheStoragePolicy这种存储策略的缓存数据,如果更换其他的参数的话,即可清理对应存储策略的缓存数据。
-----参考一:http://blog.csdn.net/kbawyg/article/details/7985513

-----参考二:http://zyc-to.blog.163.com/blog/static/17152400201110221340738/


备注:判断手机是否有网络
使用官方自带的Reachability.h判断

-(BOOL)isNetworkRunning;
{
    Reachability *r = [Reachability reachabilityWithHostName:@"http://www.baidu.com"];
    switch ([r currentReachabilityStatus]) {
        case NotReachable:
            return FALSE;
            break;
        case ReachableViaWWAN:
            return TRUE;
            break;
        case ReachableViaWiFi:
            return TRUE;
            break;
    }
    return FALSE;

}


记得添加SystemConfiguration框架。




分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics