下载动画弹出 iPhone
对于我的应用程序,我正在下载一些数据,如何才能获得一个带有动画的漂亮下载弹出窗口,并且没有按钮,该按钮在下载完成后会自动消失。
问候
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用MBProgressHUD:
https://github.com/jdg/MBProgressHUD
当然它的显示/隐藏取决于你的应用程序逻辑。
Use MBProgressHUD:
https://github.com/jdg/MBProgressHUD
Of course show/hide of it depends on your app logic.
使用 UIProgressView 并设置 UIProgressViewInst.progress = so_far_downloaded/total_download。
随着下载进度不断更新进度值,并在下载完成后隐藏它。
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.