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
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
- Attempt to present UIAlertController on View Contr
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:
UIActivityIndicatorView
.UIProgressView
.You can also roll your own implementations of the spinner or progress bar, or use one of many third-party frameworks.
Hope that helps!