0

我正在使用 AFNetworking 3.0 的 UIImageView+AFNetworking 在 UICollectionView 中显示图像。

然而,随着我不断滚动,我的应用程序的内存使用量一直在增长。我使用了 Instruments Allocations 工具,并且能够将问题缩小到 CG 栅格数据,该数据会随着加载的每个图像而不断增长。看细节CG Raster Data,负责的调用者是cgdataprovidercreatewithcopyofdata,负责的库是CoreGraphics。对于每个加载的单元格,都会浪费 240 KB 的内存。

堆栈溢出有很多类似的问题,但没有一个真正有帮助/有解决方案。

我认为这可能是由于缓存造成的,所以我启用了以下功能,但根本没有帮助:

NSURLCache * sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:10 * 1024 diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];

我试着把setImageWithURLRequest里面包裹起来,autoreleasepool但没有帮助。

我尝试在整个应用程序中搜索,cgdataprovidercreatewithcopyofdata但在我的应用程序或 afnetworking 中没有找到任何匹配项。但是,如果我删除图像的加载,那么我看不到这个问题。

此外,如果我删除完成处理程序中的图像设置,内存仍然会增长。这意味着它setImageWithURLRequest本身是罪魁祸首,而不是完成处理程序中图像的设置。

我已经为此苦苦挣扎了一段时间,任何帮助将不胜感激!

这是我设置图像的代码:

[cell.thumbnail cancelImageDownloadTask];
__weak UIImageView *weakImageView = cell.thumbnail;
@autoreleasepool {
                    [cell.thumbnail setImageWithURLRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://myurl/image.png"]]
                                          placeholderImage:[UIImage imageNamed:@"placeholder.png"]
                                                   success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {
                                                       UIImageView *strongImageView = weakImageView; // make local strong reference to protect against race conditions
                                                       if (!strongImageView) return;

                                                       [UIView transitionWithView:strongImageView
                                                                         duration:0.3
                                                                          options:UIViewAnimationOptionTransitionCrossDissolve
                                                                       animations:^{
                                                                           strongImageView.image = image;
                                                                       }
                                                                       completion:NULL];
                                                   }
                                                   failure:NULL];

以下是仪器截图:

在此处输入图像描述

在此处输入图像描述

4

1 回答 1

0

我使用@ajay gabani 响应来使用 SDWebImage 而不是 AFNetworking 的 ImageView。

在 SDWebImage 中,它至少提供了一种清除缓存的方法,而且您可以控制图像是缓存在磁盘中还是仅缓存在内存中。

我将 maxMemoryCountLimit 设置为 10,但在我的测试中似乎没有多大作用:

SDImageCache *imageCache = [SDImageCache sharedImageCache];
imageCache.maxMemoryCountLimit=10;

我每隔几秒钟清除一次缓存:

[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(simulateMemoryWarning) userInfo:nil repeats:YES];

- (void)simulateMemoryWarning{
    [[NSNotificationCenter defaultCenter] postNotificationName:UIApplicationDidReceiveMemoryWarningNotification object:nil];
    SDImageCache *imageCache = [SDImageCache sharedImageCache];
    NSLog(@"Simulated");
    [imageCache clearMemory];
    [imageCache clearDisk];
}
于 2016-01-02T00:45:11.157 回答