Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 :)

share|improve this question

1 Answer

In limiting cases investing in program structure may seem like overkill. Would we apply design patterns to a "Hello World" program? Do we need to add comments to it? There are no "Best Practices", there are just "Appropriate Practices in this situation".

Your set up is a minimalist system with a trivial model and trivial relationships - hence MVC could be overkill. The particular features of the application:

  1. There is no interesting model. Incrementing one value has no effect on any other value.
  2. There is no interesting control requirement. Pressing one button does not cause any state change other than to the immediate button.
  3. This sounds like a throw-away program with no future maintenance requirements.

Now let's think about one possible change to the application: it's persistent. When you run it tomorrow it restores the state from a database, each time you click a button you need to save the state.

How would you you implement that in your minimalist solution? Now having a common model that knows how to persist itself starts to have value. I'd claim that the MVC structure exactly avoids this turning into spaghetti. It imposes structure, and that structure is a widely used structure that a maintainer would recognised.

I may be reading too much into your question, but it sounds a bit like you are finding it troublesome to navigate an existing MVC application. It's a similar reaction to that which I've seen when someone used to writing small programs hits either a structured or OO program: they get frustrated because there is no single flow to follow, you can't readily see the overall structure. One thing we need to learn to do is to be able to take a Black-Box approach to code. Focus on one this (eg. Controller) and temporarily treat Model and View as a Black_Box. I find myself almost "gear-shifting" as I move from one aspect to another of a large system.

share|improve this answer
The question was an over simplified example of an idea I'm trying to more fully understand so I could quickly portray where I'm having trouble. The real trouble I'm having is in the "multiple" aspect of it. End result, I want a very robust button-like thing. My confusion is in whether it should store an ID type thing, so when there are multiple on the screen the controller can tell which one was pressed. But if that is the case, and there is an ID associated with it linking it to the data set with the same ID, why not just store the data in the button like thing? – Phildo Aug 5 '11 at 5:58
Again, in the limiting case where each button is entirely independent, the data is trivial (id 1, data "red"; id 2, data "blue" ...) then a simple stand-alone button clearly works. It doesn't take much change in the set-up to give MVC some benefits, for example suppose we want to support multiple languages, now it's better to have a 1 button than a red/rouge/... button. – djna Aug 8 '11 at 5:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.