原因 : 使用sd_setImageWithURL导致内存溢出
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:self.picArr[indexPath.item]]];
解决方法 : 调用清空缓存方法销毁图片内存
-(void)dealloc{
[[SDImageCache sharedImageCache] setValue:nil forKey:@"memCache"];
}
原因 : 使用sd_setImageWithURL导致内存溢出
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:self.picArr[indexPath.item]]];
解决方法 : 调用清空缓存方法销毁图片内存
-(void)dealloc{
[[SDImageCache sharedImageCache] setValue:nil forKey:@"memCache"];
}
本文标题:相册图片内存释放不了的问题
本文链接:https://www.haomeiwen.com/subject/vlebmftx.html
网友评论