下载动画弹出 iPhone

发布于 2024-12-04 09:14:48 字数 81 浏览 0 评论 0原文

对于我的应用程序,我正在下载一些数据,如何才能获得一个带有动画的漂亮下载弹出窗口,并且没有按钮,该按钮在下载完成后会自动消失。

问候

For my application I am downloading some data, how could I get a nice downloading popup with animation and without button that will go away automatically when download is finished.

Greetings

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

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

发布评论

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

评论(2

难如初 2024-12-11 09:14:48

使用MBProgressHUD:

https://github.com/jdg/MBProgressHUD

当然它的显示/隐藏取决于你的应用程序逻辑。

Use MBProgressHUD:

https://github.com/jdg/MBProgressHUD

Of course show/hide of it depends on your app logic.

情定在深秋 2024-12-11 09:14:48

使用 UIProgressView 并设置 UIProgressViewInst.progress = so_far_downloaded/total_download。

随着下载进度不断更新进度值,并在下载完成后隐藏它。

thumbs_download_progress = [[UIProgressView alloc] initWithFrame:CGRectMake(60, 120, 200, 50)];
thumbs_download_progress.progressViewStyle = UIProgressViewStyleDefault;
thumbs_download_progress.progress = 0.0f;
[self addSubview:thumbs_download_progress];

use UIProgressView and set UIProgressViewInst.progress = so_far_downloaded/total_download.

Keep updating the progress value as download progresses and hide it once download is finished.

thumbs_download_progress = [[UIProgressView alloc] initWithFrame:CGRectMake(60, 120, 200, 50)];
thumbs_download_progress.progressViewStyle = UIProgressViewStyleDefault;
thumbs_download_progress.progress = 0.0f;
[self addSubview:thumbs_download_progress];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文