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
Asked
Active
Viewed 4,101 times
1 Answers
4
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:
- Display a spinner using a
UIActivityIndicatorView
. - Display a progress bar with
UIProgressView
. - 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!

Ichor de Dionysos
- 1,107
- 1
- 8
- 30

nathangitter
- 9,607
- 3
- 33
- 42