model view controller question

Posted by songBong on Stack Overflow See other posts from Stack Overflow or by songBong
Published on 2011-01-09T02:46:44Z Indexed on 2011/01/09 2:53 UTC
Read the original article Hit count: 352

Filed under:
|
|

Hi, I've been working on my iphone game recently and came across a forked road when deciding the design of my various classes. So far I've adhered to the MVC pattern but the following situation had me confused:

I have 4 buttons displayed visually. Each button though consists of a container UIView (which I've subclassed) and 2 UIButtons (also subclassed) as subviews. When you press a button, it does the flip effect plus other stuff. The user input is using target-action from my container UIView to my controller. This part is ok, the following part is the debatable part:

So I've subclassed the container view as well as the UIButtons and I need to add more data/methods (somewhere) to do more things. Putting data that needs to be serialized and non-rendering related code in the view classes seems to break the MVC design but at the moment, it makes the most sense to me to put it there. It's almost like my subclassed views are their own little MVC's and it seems neat. Separating out the data/methods from the view to my main controller in this case seems unnecessary and a more work. How should I be doing it?

Thanks heaps.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about cocoa