我正在开发一个通过json从网上下载数据的应用。我将缓存策略设置为使用缓存,就像我在教程和帖子中看到的那样。好吧,当应用程序启动时,它会下载一次数据,如果我关闭视图并在飞行模式下重新打开它,则数据将从缓存中加载。但是,如果我关闭应用程序然后重新启动它,请不要从缓存加载并再次请求服务器(如果启用了飞行模式,则显示错误)。我需要在磁盘上缓存数据以供离线使用...请帮助
这是我的代码:
AppDelegate.m
NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:5 * 1024 * 1024
diskCapacity:100 * 1024 * 1024
diskPath:@"nsurlcache"];
[NSURLCache setSharedURLCache:sharedCache];
和请求:
NSString *string = @"http://********.es/api/get_posts/?post_type=listing";
NSURL *url = [NSURL URLWithString:string];
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:60];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[operation setCacheResponseBlock:^NSCachedURLResponse *(NSURLConnection *connection, NSCachedURLResponse *cachedResponse) {
NSCachedURLResponse * newCachedResponse = [[NSCachedURLResponse alloc]
initWithResponse:cachedResponse.response
data:cachedResponse.data
userInfo:cachedResponse.userInfo
storagePolicy:NSURLCacheStorageAllowed];
return newCachedResponse;
}];
operation.responseSerializer = [AFJSONResponseSerializer serializer];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
_lista = responseObject[@"posts"];
[self.tableView reloadData];
//NSLog(@"%@", responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error Retrieving Data"
message:[error localizedDescription]
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alertView show];
}];
[operation start];
我在网上尝试了很多解决方案,没有人按照我的意愿工作,所以我觉得问题在我的代码中出错...
答案 0 :(得分:0)
我认为您想要的功能是要求使用核心数据或使用NSFileManager编写自己的缓存。找出适合您应用的最佳方法。 Mattt Thompson有一篇关于NSFileManager的非常酷的文章here