ios - 使用 AFNetworking 下载文件时出现内存警告
<p><p>更新:</p>
<p>我写了一个很简单的下载代码:</p>
<pre><code>NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString*documentsDirectory = ;
NSURLRequest* request = [ initWithURL:];
for(int i=0; i<4; i++){
NSString*filePath = ];
AFDownloadRequestOperation* operation = [ initWithRequest:request targetPath:filePath shouldResume:YES];
operation.outputStream = ;
;
[operation setProgressiveDownloadProgressBlock:^(AFDownloadRequestOperation *operation, NSInteger bytesRead, long long totalBytesRead, long long totalBytesExpected, long long totalBytesReadForFile, long long totalBytesExpectedToReadForFile) {
NSLog(@"%f", ( totalBytesRead / (float)totalBytesExpected));
}];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"finished");
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(error.description);
}];
[ addOperation:operation];
}
</code></pre>
<p>我在我的项目 viewDidLoad 中写了它,注释掉了所有其他代码。内存使用量仍然相同并且还在增加:</p>
<p> <img src="/image/TZEwN.png" alt="enter image description here"/> </p>
<p>我创建了一个新项目,并在新项目中编写了完全相同的代码。并且内存使用情况是:</p>
<p> <img src="/image/hBPzo.png" alt="enter image description here"/> </p>
<p>哪个好。但是我不明白为什么在实际项目中会有所不同?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我猜你打开了僵尸模式。
产品 -> 方案 -> 编辑方案<br/>
取消选中选项[启用僵尸对象]</p>
<p> <img src="/image/FfZ1O.jpg" alt="enter image description here"/> </p></p>
<p style="font-size: 20px;">关于ios - 使用 AFNetworking 下载文件时出现内存警告,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19159932/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19159932/
</a>
</p>
页:
[1]