首页 技术 正文
技术 2022年11月13日
0 收藏 949 点赞 4,482 浏览 3269 个字

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

分类: IOS学习2012-12-06 16:30 7082人阅读 评论(0) 举报iosiOSIOS

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

1.保存到沙盒的代码:

  1. + (void)saveCache:(int)type andID:(int)_id andString:(NSString *)str;
  2. {
  3. NSUserDefaults * setting = [NSUserDefaults standardUserDefaults];
  4. NSString * key = [NSString stringWithFormat:@”detail-%d-%d”,type, _id];
  5. [setting setObject:str forKey:key];
  6. [setting synchronize];
  7. }

2.读取本地沙盒的代码

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

  1. + (NSString *)getCache:(int)type andID:(int)_id
  2. {
  3. NSUserDefaults * settings = [NSUserDefaults standardUserDefaults];
  4. NSString *key = [NSString stringWithFormat:@”detail-%d-%d”,type, _id];
  5. NSString *value = [settings objectForKey:key];
  6. return value;
  7. }

如果沙盒里面有数据

  1. NSString *value = [Tool getCache:5 andID:self.QiuTime];
  2. if (value) {
  3. NSDictionary *backdict = [value JSONValue];
  4. if ([backdict objectForKey:@”items”]) {
  5. NSArray *array=[NSArray arrayWithArray:[backdict objectForKey:@”items”]];
  6. for (NSDictionary *qiushi in array) {
  7. QiuShi *qs=[[[QiuShi alloc]initWithDictionary:qiushi] autorelease];
  8. [self.list addObject:qs];
  9. }
  10. }
  11. [self.tableView reloadData];
  12. }
  13. [self.tableView tableViewDidFinishedLoadingWithMessage:@”数据全部加载完了..”];
  14. self.tableView.reachedTheEnd  = YES;

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

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

  1. @interface AppDelegate : 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 = [[ASIDownloadCache alloc] init];
  3. self.myCache = cache;
  4. [cache release];
  5. //设置缓存路径
  6. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  7. NSString *documentDirectory = [paths objectAtIndex:0];
  8. [self.myCache setStoragePath:[documentDirectory stringByAppendingPathComponent:@”resource”]];
  9. [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这种存储策略的缓存数据,如果更换其他的参数的话,即可清理对应存储策略的缓存数据。
http://zyc-to.blog.163.com/blog/static/17152400201110221340738/

 
 
备注:判断手机是否有网络
使用官方自带的Reachability.h判断
  1. -(BOOL)isNetworkRunning;
  2. {
  3. Reachability *r = [Reachability reachabilityWithHostName:@”http://www.baidu.com”];
  4. switch ([r currentReachabilityStatus]) {
  5. case NotReachable:
  6. return FALSE;
  7. break;
  8. case ReachableViaWWAN:
  9. return TRUE;
  10. break;
  11. case ReachableViaWiFi:
  12. return TRUE;
  13. break;
  14. }
  15. return FALSE;
  16. }

记得添加SystemConfiguration框架。

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,497
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,910
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,744
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,497
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:8,135
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:5,298