当前位置:首页 » 存储配置 » iosjson数据存储

iosjson数据存储

发布时间: 2025-06-19 01:19:36

㈠ iOS开发怎么获取本地数据和把数据存储到本地

一般获取本地数据是从plist文件中读取JSON数据。
读取数据:
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"city" ofType:@"plist"];

NSArrary *cityArray = [[NSArray alloc]initWithContentsOfFile:plistPath];
这里的cityArray根据你存在plist中的数据类型来确定,如果plist中是字典类型,那么你这里需要使用NSDictionary去存储你从plist中获取到的数据。

至于本地存储数据的话根据你项目的具体功能来设计,一般的小型数据如用户昵称、手机号等使用NSUserDefault即可,但是如果是大量数据如账单类app中的账单数据那么此时需要考虑使用sqlite3去存储数据,至于密码之类就需要使用NSKeydArchiver去存储。

㈡ ios开发数据缓存如何获取服务端最新数据

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

1.保存到沙盒的代码:

[plain] view
plain

+ (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判断本地是否有

[plain] view
plain

+ (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;
}

如果沙盒里面有数据

[plain] view
plain

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 :@"数据全部加载完了.."];
self.tableView.reachedTheEnd = YES;

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

1、设置全局的Cache

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

[plain] view plain

@interface AppDelegate : UIResponder
{
ASIDownloadCache *myCache;
}
@property (strong, nonatomic) UIWindow *window;
@property (nonatomic,retain) ASIDownloadCache *myCache;

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

[plain] view plain

//自定义缓存
ASIDownloadCache *cache = [[ASIDownloadCache alloc] init];
self.myCache = cache;
[cache release];

//设置缓存路径
NSArray *paths = (NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDirectory = [paths objectAtIndex:0];
[self.myCache setStoragePath:[documentDirectory :@"resource"]];
[self.myCache setDefaultCachePolicy:];

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

[plain] view plain

[myCache release];

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

2、设置缓存策略

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

[plain] view plain

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:];
request.delegate = self;
[request startAsynchronous];

3、清理缓存数据

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

[plain] view plain

AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate.myCache :];

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

热点内容
加密狗的使用方法 发布:2025-06-19 05:25:18 浏览:950
为什么安卓需要使用dp和sp 发布:2025-06-19 05:25:13 浏览:467
怎么查看steam服务器的IP 发布:2025-06-19 05:24:19 浏览:535
我的世界服务器装萌新 发布:2025-06-19 05:22:59 浏览:742
c语言多个源文件 发布:2025-06-19 05:12:20 浏览:198
油猴中国大学慕课脚本 发布:2025-06-19 05:11:23 浏览:741
php上传图片获取路径 发布:2025-06-19 04:52:37 浏览:998
cdn缓存方案 发布:2025-06-19 04:46:09 浏览:502
存储转换工具 发布:2025-06-19 04:38:39 浏览:930
密码哪里修改 发布:2025-06-19 04:33:02 浏览:521