Example scenario: 5 views on the screen that each increment through the colors of the rainbow by one color each time you press it.
In keeping with the MVC design, it seems to encourage having a model that is an array of ints or something, and every time a view is pressed it tells the controller "hey, I'm pressed, just fyi" and then have the controller say "ok, I will increment your corresponding spot in the array by one" and then have the model say "I'm changed, whoever cares" and then have the view say "I care, so I will change my color now".
^That seems absolutely absurd to me. I'm thinking I must have the way MVC should work completely skewed, as it seems to make much more sense to simply store the data in the button itself. Sure, maybe the functionality of the button will change or be reused so leave what to do when the button is pressed up to its delegate (the controller), but this seems a bit much.
Also, is it then recommended to store an ID with the view? How else will the delegate know which one was pressed? Then a corresponding ID should be saved with the model? This is starting to remind me of spaghetti-like mysql tables...
Anyways, just want to make sure I have that correct.
ps- I am aware that there is no other worldly force out there that MANDATES I use MVC absolutely perfectly every time, but would still like to know what is considered proper in this scenario :)