我是初学者。我对 SDURLCache 和 AFNetwoking.my 代码有疑问:
首先,我在我的 appdelegate.m 中设置 sdurlcache
self.cache = [[SDURLCache alloc] initWithMemoryCapacity:1024*1024 // 1 MB mem cache
diskCapacity:1024*1024*5 // 5 MB disk cache
diskPath:[SDURLCache defaultCachePath]];
self.cache.ignoreMemoryOnlyStoragePolicy = YES;
[NSURLCache setSharedURLCache:self.cache];
第二,我在tableCell中使用了AFNetwoking+UIImageView:
[cell.Image setImageWithURL:url placeholderImage:[UIImage imageNamed:@"zhanweiSmall.png"]];
但是图片没有缓存。如果网络无效,图片不显示