我使用以下代码下载图片:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)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;
}
但它会导致内存不足问题。
答案 0 :(得分:2)
它不是AFNetworking,而是导致内存使用的图像代码。 JPEG压缩图像,但是当创建图像时,每个像素将有4个字节。由于服务器上的jpeg文件是1.4MB,所有AFNetworking都将加载。
看来你正在使用一些助手类查看该代码,而NSLog则是AFNetworking下载的实际数据的大小。
每像素4个字节的5407×3605图像将创建超过77MB的图像。您可以缩放它,但首先渲染原始图像,缩放将使用更多内存,因为最后您将有两个图像。
您需要将原始图像的创建和缩放包装在自动释放池中,以便尽快释放原始图像。
最好不要首先加载如此大的图像。