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.

I am a beginner in the realm of cocoa and don't understand when you should choose key value observing over the Model View Controller. My question: Can everything that is done with a MVC scheme also be implemented with KVO? Is it true as well that you could replace any KVO with a similar MVC?

Thanks

share|improve this question

1 Answer

up vote 7 down vote accepted

They are not mutually exclusive. MVC is a general design pattern and KVO is a specific Cocoa technology which you can use in MVC applications (and other apps too).

share|improve this answer
Thanks! Another sub-question, I'm still trying to connect the dots..., I have a cocoa app that is currently using a traditional MVC scheme can I change it to use a KVO system and remove a whole lot of glue code. or is it something that you have to start with from beginning? Is it bad taste to mix the two? wow I really am bumbeling around. Any good links/ tutorials on implementing KVO? – cwieland Feb 11 '11 at 18:41
@cwieland: Of course you can. Using KVO should make your MVC cleaner since you don't have to implement mechanisms in your model to let the controller know it has changed. – JeremyP Feb 14 '11 at 8:50

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.