Reputation: 6325
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
Upvotes: 3
Views: 682
Reputation: 86661
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).
Upvotes: 8