Ask Your Question
3

How can the update of properties from both ParentViewModel and ChildViewModel in SwiftUI be solved?

asked 2021-07-22 11:00:00 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-02-18 10:00:00 +0000

plato gravatar image

One solution could be to use a shared state object between the parent and child views. The state object can be passed down through the view hierarchy and both parent and child views can access and modify its properties.

Another solution is to use a binding property as an intermediary between the parent and child views. The parent view can pass a binding property to the child view, allowing the child view to update the value of the property. When the property is updated, the parent view can observe the change and update its own state accordingly.

Additionally, one can make use of notification or delegation patterns where the child view can notify the parent view whenever a property is updated, and the parent view can update its own state accordingly.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-07-22 11:00:00 +0000

Seen: 14 times

Last updated: Feb 18 '23