1

我正在从 UIGridViewCells 下载电影文件。我的代码是:

NSMutableURLRequest* rq = [[APIClient sharedClient] requestWithMethod:@"GET" path:[[self item] downloadUrl] parameters:nil];
    [rq setTimeoutInterval:5000];
    _downloadOperation = [[AFHTTPRequestOperation alloc] initWithRequest:rq] ;
    _downloadOperation.outputStream = [NSOutputStream outputStreamToFileAtPath:[[self item] localUrl] append:NO];
    __weak typeof(self) weakSelf = self;
    [_downloadOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSLog(@"Successfully downloaded file to %@", [weakSelf.item localUrl]);
        [Helper saveItemDownloaded:weakSelf.item.productId];
        weakSelf.isDownloading = NO;
        [weakSelf.progressOverlayView removeFromSuperview];
        [weakSelf setUserInteractionEnabled:YES];
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        NSLog(@"Error: %@", error);
        [weakSelf.progressOverlayView removeFromSuperview];
        [weakSelf setUserInteractionEnabled:YES];
        weakSelf.isDownloading = NO;
        }];
    [_downloadOperation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) {
        float progress = totalBytesRead / (float)totalBytesExpectedToRead;
        weakSelf.progressOverlayView.progress = progress;
    }];
    [[NSOperationQueue mainQueue] addOperation:_downloadOperation];

ItemCell 中的属性是:

@property (nonatomic, retain) AFHTTPRequestOperation *downloadOperation;

1-2 次成功下载(20mb)后,我收到内存警告。每次下载使用的内存都会增加,下载完成后不会减少。

在此处输入图像描述

从仪器: 在此处输入图像描述

4

2 回答 2

2

我相信使用 AFNetworking 下载文件的首选方法是设置“outputStream”属性。

根据 AFNetworking 文档:

用于写入在请求完成之前接收到的数据的输出流。

默认情况下,数据会累积到一个缓冲区中,该缓冲区会responseData在请求完成后存储到该缓冲区中。设置时outputStream,数据不会累积到内部缓冲区中,因此responseData完成请求的属性将为nil。设置后,输出流将在网络线程运行循环中调度。

我遇到了同样的问题,通过使用“outputStream”解决了它。

于 2013-11-01T14:17:29.427 回答
0

每个下载的文件使用@autorelease:

for(File* file in fileList)
{
    @autoreleasepool {
        [self downloadFile:file];
    } 
}

这将释放您下载的单独文件之间分配的所有变量和数据。

此外,您应该追踪那些内存泄漏。我在仪器屏幕截图中看到了一些可见的内容。

于 2013-10-02T20:14:31.197 回答