Your Second iOS & SwiftUI App

Nov 4 2021 · Swift 5.5, iOS 15, Xcode 13

Part 2: Data Flow

17. Observable Objects

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 16. Model Objects Next episode: 18. Challenge: Micro-Review

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Alright, we did all that work transforming our Book type, let’s see if our bookmark button is working in a live preview!

/// THE SOFTWARE.

import Combine

class Book {
  @Published var microReview: String
  @Published var readMe: Bool
class Book: ObservableObject {
@ObservedObject var book: Book