在 iPhone 中显示用于将视频上传到服务器的 UIprogressiveView

发布于 2024-10-29 13:15:57 字数 216 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-11-05 13:15:57

将您的 UIProgressView 设置为 ASIHTTPRequest 的进度委托:

[request setDownloadProgressDelegate:myProgressView]

ASIHTTPRequest 将定期调用 setProgress:

编辑:上传时,请使用以下命令:

[request setUploadProgressDelegate:myProgressView]

Set your UIProgressView as ASIHTTPRequest's progress delegate:

[request setDownloadProgressDelegate:myProgressView]

ASIHTTPRequest will call setProgress: periodically on it.

Edit: When uploading, use this instead:

[request setUploadProgressDelegate:myProgressView]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文