我希望在上传视频时添加progressBar 任何帮助将不胜感激。 谢谢。
答案 0 :(得分:1)
您可以使用 NSURLConnection 上传视频。然后使用委托方法 didSendBodyData 并执行类似这样的操作
- (void)connection:(NSURLConnection *)connection
didSendBodyData:(NSInteger)bytesWritten
totalBytesWritten:(NSInteger)totalBytesWritten
totalBytesExpectedToWrite:(NSInteger)totalBytesWritten
{
yourProgresView.progress = totalBytesWritten/totalBytesWritten;
}
答案 1 :(得分:-1)
拖动您放置在视图控制器中的渐进视图,然后通过制作 - (void)渐进式视图编写您希望它在多长时间内显示进度和视图中所有细节的编码。