3

谁能告诉我如何在滚动图像时清除缓存?我正在使用 SDwebImage 包。它一直工作到 110 张照片之后它给内存收到警告并崩溃我也尝试了以下方法但没有成功:

SDImageCache *imageCache = [SDImageCache sharedImageCache];

[imageCache clearMemory]; [imageCache clearDisk]; [imageCache cleanDisk];``

在此代码之后,它会在崩溃之后再滚动 10 张照片。

4

1 回答 1

0

尝试 [imageCache 发布];或在启动时自动释放或尝试写入

-(void)dealloc
{
   [super dealloc];  
  [imageCache release];
}
于 2012-10-20T06:08:56.053 回答