Observing changes of Core Data Object in swiftUI
Core data objects confirms to Observable and each property is publishable. So we can use ‘@observedObject’ to observe changes of core data object. Let us look at a small example. A 2 screen app where a screen have a list of core data objects and the other screen provides option to edit property of core data object. By Using ‘@ObservedObject’ as below, the changes we make to the core data object are automatically reflected .
Thanks for reading :))