afneworking 缓存问题

NSURLCache:NSURLConnection's默认的URL缓存机制,用于存储NSURLResponse对象:一个默认缓存在内存,通过配置可以缓存到磁盘的类。

有时候,不想缓存 afneworking的responseObject,就得修改源码。

搜索NSURLCache,找到下面的方法

+ (NSURLCache *)defaultURLCache {

return [[NSURLCache alloc] initWithMemoryCapacity:0 * 0 * 0

diskCapacity:0 * 0 * 0

diskPath:@"com.alamofire.imagedownloader"];

}

你可能感兴趣的:(afneworking 缓存问题)