MVC 与 KVO 的实现
我是可可领域的初学者,不明白什么时候应该选择键值观察而不是模型视图控制器。我的问题:用MVC方案完成的所有事情都可以用KVO来实现吗?是否真的可以用类似的 MVC 替换任何 KVO?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们并不相互排斥。 MVC 是一种通用设计模式,KVO 是一种特定的 Cocoa 技术,您可以在 MVC 应用程序(以及其他应用程序)中使用它。
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).