Model-View-Controller seems to allow two types of changes to the view:
- Whenever the model changes, the view receives a change notification so it can update its visual representation accordingly.
- The controller is given direct access to the view's API for the purposes of "View Selection".
What exactly is "View Selection", and under what circumstances should the controller be making changes to the view rather than having the view make its own changes based only on the model?