Concurrency in modern Swift with Async & Await in SwiftUI — Part 1

DevTechie
DevTechie
Published in
3 min readDec 18, 2022

--

Concurrency in modern Swift with Async & Await in SwiftUI — Part 1

Apple introduced async and await keywords with the release of Swift 5.5 to modernize the concurrency APIs for Apple ecosystems.

Before Swift 5.5, Grand Central Dispatch (GCD), Operation Queues and Completion blocks were the preferred way to manage and create a sequence of concurrent code. With the introduction of async and await, we don’t have to deal…

--

--