MVC used in ObjectiveC programming
2 answers
A model is what stores your application data - its world model.
A view is what interacts with your user. It displays things and returns the input.
Controller handles interactions between other components. It talks about how to find its content, it reacts to changes in the view by updating the relevant parts of the model and reacts to changes in the model by telling you to update.
+7
a source to share