Updated for Xcode 12.0
New in iOS 14
SwiftUI’s ProgressView
can be created without any sort of binding attached, which will cause them to become indeterminate – they will show a spinner that animates forever, rather than showing some sort of clear progress.
All it takes is code like this:
struct ContentView: View {
var body: some View {
VStack {
ProgressView("Downloading…")
}
}
}
SPONSORED Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.