\'@Environment(.managedObjectContext) var context\' will monitor the changes of context. When I click the button to toggle isPublic, I think it will cause to UI refreshing, Butt
You need to observe a Book
changes via ObservedObject
wrapper, like
struct BookInfoView: View {
@Environment(\.managedObjectContext) var context
@ObservedObject var book: Book
var body: some View {
print("refresh"); return
Group {
Button(action: onPublicToggled) {
Text(book.isPublic ? "private" : "public")
}
}
}
func onPublicToggled() {
context.perform {
book.isPublic.toggle()
try? context.save()
}
}
}
Note: @Environment(\.managedObjectContext) var context
relates to context
itself, not to your CoreData objects.