mvvm concept in software design – model view view model?

867 views

I literally studied computer science and don’t understand this. I’m so frustrated.

In: Technology

3 Answers

Anonymous 0 Comments

You have an object which contains all your data (Model) . And a view which displays all your data.
With normal mvc (model View controller) your object with data does not know when a value is changed in your view (E.g. You select your age, the object does not know you set.
With mvvm the model listens to the view, and the view listens to the model. That way if you update age in the view, the model will be updates with your selected age, and vice versa.

You are viewing 1 out of 3 answers, click here to view all answers.