在 iPhone 中显示用于将视频上传到服务器的 UIprogressiveView
我正在使用 UIImagePickerController 获取录制的视频,我获取了 URL 并将其转换为数据,现在我想将视频上传到服务器,
由于视频文件需要更多时间上传,我想向 UIProgressiveView 显示上传了多少内容,如何实现这个功能。
我正在使用 ASIFormDataRequest 将数据上传到服务器。
请帮助我..
提前致谢..
I am obtaining a recorded video using UIImagePickerController, i got the URL and converted it to data, now I want to upload the video to a server,
As video files take more time to upload, I want to show UIProgressiveView how much content is uploaded, how to achieve this functionality.
I am using ASIFormDataRequest for uploading data to the server.
Please help me in it..
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的
UIProgressView
设置为 ASIHTTPRequest 的进度委托:ASIHTTPRequest 将定期调用
setProgress:
。编辑:上传时,请使用以下命令:
Set your
UIProgressView
as ASIHTTPRequest's progress delegate:ASIHTTPRequest will call
setProgress:
periodically on it.Edit: When uploading, use this instead: