OGeek|极客世界-中国程序员成长平台

标题: ios - AFNetworking 内存不足问题 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 13:25
标题: ios - AFNetworking 内存不足问题

我使用此代码下载图像:

- (UICollectionViewCell *)collectionViewUICollectionView *)collectionView cellForItemAtIndexPathNSIndexPath *)indexPath
{
    SECustomCollectionViewCell *collectionViewCell = (SECustomCollectionViewCell *)[collectionView dequeueReusableCellWithReuseIdentifier"SECustomCollectionViewCell" forIndexPath:indexPath];

    NSDictionary *artwork = [self.artworks objectAtIndex:indexPath.item];

    collectionViewCell.theImageView.image = nil;

    if (artwork[@"video_url"])
    {
        UIWebView *webView = (UIWebView *)[collectionViewCell.contentView viewWithTag:100];
        NSString * html = [self embedYouTube:artwork[@"video_url"] frame:collectionViewCell.frame];

        [webView setHidden:NO];

        [webView loadHTMLString:html baseURL:nil];

        [collectionViewCell.activityIndicator setHidden:YES];
    }
    else
    {
        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:artwork[@"image_url"]]];

        UIImage *cachedImage = [[[UIImageView class] sharedImageCache] cachedImageForRequest:request];

        if (cachedImage)
        {
            collectionViewCell.theImageView.image = [UIImage scaleImage:cachedImage toWidth:collectionViewCell.frame.size.width];
            [collectionViewCell.activityIndicator setHidden:YES];
        }
        else
        {
            [collectionViewCell.theImageView setImageWithURLRequest:request placeholderImage:nil success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {

                // Only update visible cell, to avoid inserting image to another cell.
                SECustomCollectionViewCell *visibleCollectionViewCell = (id)[collectionView cellForItemAtIndexPath:indexPath];

                if (visibleCollectionViewCell)
                {
                    [visibleCollectionViewCell.theImageView setImage:[UIImage scaleImage:image toWidth:collectionViewCell.frame.size.width]];

                    [visibleCollectionViewCell.activityIndicator stopAnimating];

                    [visibleCollectionViewCell.activityIndicator setHidden:YES];
                }

            } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {

            }];
        }
    }

    return collectionViewCell;
}

但它会导致内存不足的问题。



Best Answer-推荐答案


导致内存使用的不是 AFNetworking,而是图像代码。 JPEG 压缩图像,但创建图像时,每个像素将有 4 个字节。由于服务器上 1.4MB 的 jpeg 文件将加载所有 AFNetworking。

您似乎正在使用一些帮助程序类查看该代码并 NSLog AFNetworking 下载的实际数据的大小。

一张 5407 × 3605、每像素 4 字节的图像将创建超过 77MB 的图像。您可以对其进行缩放,但首先会渲染原始图像,并且缩放将使用更多内存,因为最后您将拥有两个图像。

您需要将原始图像的创建和缩放包装在自动释放池中,以便尽快释放原始图像。

最好一开始就不要加载这么大的图片。

关于ios - AFNetworking 内存不足问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27637203/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) Powered by Discuz! X3.4