Getting Started With Async/Await in SwiftUI for iOS 15

Learn how to use async/await in SwiftUI apps

Peter Friese
Better Programming
Published in
7 min readJun 30, 2021

--

Logo reminiscent of SF Symbols logo
Image by the author (based on SF Symbols).

Without a doubt, one of the biggest announcements at WWDC21 was Swift Concurrency — most notably the support for async/await.

As developers, we’re constantly faced with the asynchronous nature of the apps we write. Reading a file from disk, fetching data from a remote API…

--

--