How to implement MVC model?
Hi, I have a question on how to implement MVC model, that is, how will the GUI be informed that the data from the Model has been changed?
Suppose that I have two simple classes, Model and GUI. Model creates 10 integers each time, and then GUI draws some bars whose height is the integers. then after each time the integers has been created, how could GUI know?
Thanks!!!!

