SwiftUI View not updating based on @ObservedObject

With @ObservedObject everything’s fine… let’s analyse… Iteration 1: Take your code without changes and add just the following line (shows as text current state of visible array) VStack { // << right below this Text(“\(numberLine.visible.reduce(into: “”) { $0 += $1 ? “Y” : “N”} )”) and run, and you see that Text is updated so … Read more