相册图片内存释放不了的问题
2018-08-13 本文已影响25人
JACK_岩
原因 : 使用sd_setImageWithURL导致内存溢出
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:self.picArr[indexPath.item]]];
解决方法 : 调用清空缓存方法销毁图片内存
-(void)dealloc{
[[SDImageCache sharedImageCache] setValue:nil forKey:@"memCache"];
}