MBProgressHUD 与 ASIHTTPRequest

发布于 12-12 07:33 字数 309 浏览 0 评论 0原文

我正在尝试使用 MBProgressHUD 显示通过 ASINetworkQueue 下载的多个图像的下载进度。

我已将 hud 设置为网络队列的进度委托,并将 hud 的模式设置为 MBProgressHUDModeDeterminate。

我可以让HUD显示和隐藏,但我无法改变进度。在网络队列完成之前,HUD 不会重新绘制自身。

我可以看到 MBProgressHUD 的 drawRect 从未被调用,但我不知道为什么。

如果有人可以提供如何实现此目标的示例或伪代码,我将非常感激。

谢谢,

安德烈斯

I am trying to use MBProgressHUD to display a progress of download of multiple images which are downloaded via ASINetworkQueue.

I have set the hud as networkQueue's progress delegate and I have also set the mode of the hud to MBProgressHUDModeDeterminate.

I can make the hud display and hide, but I cannot change the progress. The hud just doesn't redraw itself until the networkQueue is complete.

I can see that MBProgressHUD's drawRect is never called but I don't know why.

I would be very grateful if anyone could provide a sample or pseudo code of how to achieve this.

Thanks,

Andrius

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我恋#小黄人2024-12-19 07:33:25

可能有两个可能的问题:

  1. 应用程序的主线程已被阻塞;您是否在主线程上调用“waitUntilAllOperationsAreFinished”或类似方法?

  2. 如果服务器未发送 Content-Length: 标头,ASIHTTPRequest 无法报告太多进度,因此这也可能是问题所在。

There are perhaps two likely issues:

  1. The main thread of your application has been blocked; are you calling 'waitUntilAllOperationsAreFinished' on the main thread or similar?

  2. ASIHTTPRequest can't report much in the way of progress if the server isn't sending Content-Length: headers, so this could also be the issue.

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