码迷,mamicode.com
首页 > 其他好文 > 详细

本地缓存的使用方法

时间:2015-09-30 16:28:33      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

NSURLCache *cache = [NSURLCache sharedURLCache];
    cache.memoryCapacity = 2 * 1024 * 1024;
    cache.diskCapacity = 20 * 1024 *1024;
    NSCachedURLResponse *response = [cache cachedResponseForRequest:request];
    
    if (response) {
//        NSLog(@"data:%@", response.data);
        id cacheResult = [NSJSONSerialization JSONObjectWithData:response.data options:NSJSONReadingMutableContainers error:nil];
        NSLog(@"cacheResult: %@", cacheResult);
    }

本地缓存的使用方法

标签:

原文地址:http://www.cnblogs.com/lidongxiao/p/4849371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!