当用户将任何图像上传到服务器时,我想显示进度条。我的图像使用php url成功上传到服务器。但为此,我没有使用任何NSUrlConnection类。实际上我是从不同的不同视图控制器类上传多个图像,所以我在我的Util类中添加了一个方法用于常见的上传图像,我在这里传递图像数据&图片ID。那么我如何在以下情况下实现NSUrlConnection委托:
这是我的Util类方法:
+(void)uploadImageOnServer:(NSData *)imageData forId:(NSString *)imageId
{
NSString *urlString = @"http://url...............";
// setting up the request object now
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
NSString *boundary = @"---------------------------147378098314876653456641449";
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
/*
now lets create the body of the post
*/
NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
NSString *stringData = [NSString stringWithFormat:@"Content-Disposition: form-data; name=\"Documents\"; filename=\%@.jpg\r\n",imageId];
[body appendData: [stringData dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[@"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];
// now lets make the connection to the web
NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
}
从我的ViewController类,我调用上面的方法将图像上传到服务器:
[Util uploadImageOnServer:positionData forId:positionImageId];
将一张图像上传到服务器大约需要4-5秒。我想添加像这个附加截图的进度视图。您能否指导我如何在我的Util类中集成常见的NSUrlConnection代表,以向用户显示已上载了多少数据?
感谢。
答案 0 :(得分:1)
您需要使用异步连接和connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:
委托方法。
您还应该考虑使用AFNetworking及其提供的进度回调。