我正在尝试将图片从iPhone上传到服务器。我可以这样做但我需要显示一个指标。我的代码是
NSData *imageData = UIImageJPEGRepresentation(newImage, 90);
// setting up the URL to post to
NSString *urlString = [NSString stringWithFormat:@"URL",[[formater stringFromDate:now] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
// setting up the request object now
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
NSString *boundary = [NSString stringWithFormat:@"---------------------------14737809831466499882746641449"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"image\"; filename=\"ipodfile.jpg\"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:imageData]];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
// setting the body of the post to the reqeust
[request setHTTPBody:body];
以下是触发请求的代码。
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
NSLog(@"Finished with status code: %i", [(NSHTTPURLResponse *)response statusCode]);
}];
那么如何计算剩余时间以便我可以显示指标? 谢谢你的时间。
答案 0 :(得分:4)
您可以使用此连接委托方法:
- (void) connection:(NSURLConnection *)connection
didSendBodyData:(NSInteger)bytesWritten
totalBytesWritten:(NSInteger)totalBytesWritten
totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite;
(我该如何包装这么长的参数名?)
它不在NSURLConnectionDataDelegate
的文档中,但如果您检查公共标题NSURLConnection.h
,它就在那里。所以不要担心使用它。
从文档 URL加载系统编程指南> 使用NSURLConnection :
估算上传进度
您可以使用
connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:
委托方法估算HTTP POST上传的进度。请注意,这不是上传进度的准确度量,因为连接可能会失败或连接可能会遇到身份验证质询。
答案 1 :(得分:1)
我相信你想展示像进度条这样的东西。我建议使用MKNetworkKit为您提供许多网络管理工具,例如异步连接的进度。请检查此link。