我正在编写一个IOS文件上传应用程序,它一次打开多个NSUrlConnection
(每个文件上传一个文件),并希望为每一个实现相应的进度条。
NSUrlConnection
文件上传代码段
NSURLConnection *urlConnection = [[NSURLConnection alloc] initWithRequest:request
delegate:self
[urlConnection start];
更新进度条的委托方法:
- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite {
self.progressBar.progress += (float)bytesWritten/(float)totalBytesExpectedToWrite;
NSLog(@"it's working: %lf",self.progressBar.progress);
}
现在在这种情况下,如果每个文件上传都有一个单独的进度条,是否有办法知道哪个文件上传,即该委托对应的NSURLConnection
,以便我可以更新正确的相应的进度条。我可以在NSURLConnection
中设置任何属性,我可以在委托方法的连接变量中访问它吗?
感谢。
答案 0 :(得分:0)
我所做的是我构建了自己的类(例如MyUploader)并在其中添加了NSURLConnection对象,也是对此NSURLConnection对象应更新的进度条控件的引用。
@interface MyUploader
@property (strong, nonatomic) NSURLConnection* connection;
@Property (weak, nonatomic) UIProgressBar bar;
- (void)startUploadingFile:(NSString*)filePath withBarToUpdate:(UIProgressBar*)progressBar;
@end
在视图控制器中,您可以在startUploadingFile:withBarToUpdate中传递bar对象和文件路径:它可以存储bar对象并启动连接。
此类还应实现NSURLConnectionDelegate以更新代码中的进度条