我收到bug报告,我的iOS应用程序在慢速连接下无法上传图像。虽然我的暂停时间可能不够长,但还有另一个问题。
我发现上传进度很快达到100%,尽管我可以在Charles中看到字节仍在传输。我使用NSURLSession的如下方法:
- (NSURLSessionUploadTask *)uploadTaskWithRequest:(NSURLRequest *)request
fromData:(NSData *)bodyData
completionHandler:(void (^)(NSData *data,
NSURLResponse *response,
NSError *error))completionHandler
,并实现以下委托方法来接收进度事件:
- (void)URLSession:(NSURLSession *)session
task:(NSURLSessionTask *)task
didSendBodyData:(int64_t)bytesSent
totalBytesSent:(int64_t)totalBytesSent
totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
实际上我使用的是AFNetworking 2.5.2,它使用了这种方法。我的理论是,这个委托方法报告从手机发送的字节数,而不是实际传输的字节数。
在非常低的连接下发送300kb将立即发送5-6个包,并在等待它们被接收时报告100%的进度。
是否有可能获得已确认传输的实际字节数的进度事件?
这是可能的!
[operation setUploadProgressBlock:^(NSInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
float prog = (totalBytesWritten / (totalBytesExpectedToWrite * 1.0f) * 100);
[self.progBar setProgress:prog];
NSLog(@"%f%% Uploaded", (totalBytesWritten / (totalBytesExpectedToWrite * 1.0f) * 100));
}];