将托管对象与 iPhone 上的控件同步的最优雅的方式?
我正在尝试将 iPhone 应用程序从使用 SQLite 移植到 Core Data。
有没有一种方法可以将托管对象直接与操纵其值的控件同步,而无需中间有控制器? 注意:我可以用困难的方式做到这一点——这就是我现在正在做的; 我正在寻找优雅、简单、快速的方法。
我正在翻阅文档,但我开始感到不知所措。 Bindings 的文档似乎仅适用于 Mac OS X,不适用于 iPhone。 我所描述的在 iPhone 上是否可能实现?
谢谢。
I'm trying to port an iPhone application from using SQLite to Core Data.
Is there a way to sync managed objects directly with the controls that manipulate their values, without having a controller in the middle? Note: I CAN do it the hard way -- it's what I'm doing now; I'm looking for the elegant, easy, fast way.
I'm paging through the documentation and I'm just starting to feel overwhelmed. The documentation on Bindings seems to be Mac OS X only, not iPhone. Is what I describe even possible on the iPhone?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是你是对的。 除非有一些我不知道的库(并非不可能),否则您可以将自己的 coredata 类绑定到视图。
You are unfortunately correct. Unless there's some library I don't know about (not impossible), you get to roll your own binding of coredata classes to views.