我正在使用简单的AFNetworking [AFHTTPRequestOperation -initWithRequest:]下载文件,我想在实际下载文件之前检查响应头“内容长度”。 如何在AFNetworking中检查响应内容长度?
答案 0 :(得分:6)
使用 expectedContentLength NSURLResponse的属性你可以找到长度。
AFHTTPRequestOperation *op = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[op setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject)
{
NSLog(@"Content-lent: %lld", [operation.response expectedContentLength]);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error: %@", error);
}];