在 XIB 视图中将 NSArrayController 绑定到 Xcode4 中 NSPersistentDocument 子类中的 moc

发布于 2024-11-05 11:38:42 字数 447 浏览 8 评论 0原文

我有我的 NSPersistentDocument 子类,其超类有 [self ManagedObjectContext]

尝试在 xib 中设置我的 NSArrayController 的绑定。当我设置参数的 Moc 时,绑定到的选项是:文件所有者、应用程序和首选项。 (NSArrayController 的实体设置为我上下文中的实体名称)

模型 KeyPath 默认为 self。 然后,我将表列的值绑定到 NSArrayController (我不知道如何在 Xcode 4 下重命名).arrangedObjects.(我的实体属性的名称)

UI 上有一个填充按钮可以自行填充上下文。

当我跑步时。用户界面不会出现,我在控制台中得到的所有内容都是重复的: -[MyDoc permanentStoreCoordinator]:无法识别的选择器发送到实例 0x10015adf0

有建议吗?

I have my subclass of NSPersistentDocument who's superclass has [self managedObjectContext]

Trying to set the bindings of my NSArrayController in the xib. When I set the Parameter's Moc, the bind to choices are: File's Owner, App, and Prefs. (The NSArrayController's entity is set to the Entity name in my context)

Model KeyPath defaults to self.
I then bind the value of a table column to the NSArrayController (Which I'm not sure how to rename under Xcode 4).arrangedObjects.(name of my entity property)

There's a populate button on the UI to self populate the context.

When I run. The UI won't come up and all I get in the console is repeated:
-[MyDoc persistentStoreCoordinator]: unrecognized selector sent to instance 0x10015adf0

Suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稚气少女 2024-11-12 11:38:42

我怀疑您已将 ManagedObjectContext 直接绑定到 NSPercientDocument。您可能需要做的是在绑定面板中绑定到文件所有者(假设这是 NSPercientDocument),然后将绑定路径(模型密钥路径)设置为 ManagedObjectContext。

I suspect you have bound the managedObjectContext directly to the NSPersistentDocument. What you probably need to do is in the bindings panel bind to the Files Owner (assuming this is NSPersistentDocument) and then set the binding path (Model Key Path) to managedObjectContext.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文