Concurrency & Asynchronous Programming in Swift

May 20 2025 · Swift 6, iOS 18, Xcode 16

Lesson 03: Concurrency in SwiftUI

Demo

Episode complete

Play next episode

Next

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

In this demo, you’ll update some SwiftUI code to make use of Asynchronous methods.

  .task {

  }
  .task {
    do {
      try await store.fetchObjects(for: query)
    } catch {}
  }
See forum comments
Cinema mode Download course materials from Github
Previous: Instruction Next: Conclusion