如何将文本字段绑定到包含一行的一个核心数据实体的属性?
我有一个视图想要显示我的应用程序的汇总使用数据。足够方便的是,我有一个可可核心数据实体,其中所有使用数据都已预先聚合(因此它只有一行)。我想将实体中的每个单独属性绑定到不同的 NSTextFields (例如不在 NSTableView 中)。
这似乎不是核心数据+界面构建器可以很好处理的使用模式。到目前为止,我正在做的是将聚合属性复制到 NSUserDefaults 中,并将我的文本字段绑定到默认值。我想要一种更好、更优雅的方式来做到这一点。
还有更好的想法吗?需要用一条又大又粗的线索敲我的头吗?
一如既往地感谢您的阅读...
I have a view that wants to show summarized usage data for my app. Conveniently enough I have a cocoa core data entity with all the usage data pre-aggregated (so it has only one row ever). I would like to bind each individual attribute in the entity to different NSTextFields (eg not in an NSTableView).
This does not seem to be a usage pattern that core data + interface builder handles nicely. So far what I am doing is duplicating my aggregated attributes into NSUserDefaults and binding my text fields to the defaults. I would like an better, elegant way to do this.
Any better ideas out there? Do I need to be smacked in the head with a big fat clue?
Thanks as always for reading...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我只是用我自己的大线索撞到了自己的头。
解决方案是使用 NSObjectController。
在我的例子中,它在标题中看起来像这样:
在实现中也像这样
当然 +[StatsSupport getTotalRecord] 是你的基本核心数据获取类型代码,如果你读到这里你就知道它是什么样的。 (它可能已经存在,因为您需要此代码或类似的代码来执行正常的数据读取/更新)
最后跳一点快乐的舞蹈,因为您让可可为您做了一些工作。
Ok I just hit my own head with my own big fat clue.
The solution was to use NSObjectController.
In my case it looks like this in the header:
And like this in the implementation
And of course +[StatsSupport getTotalRecord] is your basic core data fetch type code which if you read this far you know how that looks. (and it will probably already exist since you need this code or something similar just to perform normal data reading/updating)
Lastly do a little happy dance because you made cocoa do some work for you.