Displaying download Progress in iOS status bar

感情迁移 提交于 2019-12-02 15:44:57

问题


I would like to display the download progress in the iOS status bar the same way android does. I know we can show the activity indicator but I was thinking


回答1:


You cannot display download progress in the iOS status bar. The iOS Human Interface Guidelines for Progress Indicators shows some alternatives: https://developer.apple.com/ios/human-interface-guidelines/controls/progress-indicators/

A brief summary of the options:

  1. Display a spinner using a UIActivityIndicatorView.
  2. Display a progress bar with UIProgressView.
  3. Show the network activity indicator in the status bar.

You can also roll your own implementations of the spinner or progress bar, or use one of many third-party frameworks.

Hope that helps!



来源:https://stackoverflow.com/questions/41190145/displaying-download-progress-in-ios-status-bar

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!