NSArrayController选择
我想实现以下目标: 有一个人员列表(姓名、生日、照片) 我想在 NSPopUpButton 中选择一个人名并显示 其他详细信息如下。
我怎样才能仅使用绑定来做到这一点?
我使用 NSArrayController 来填充 NSPopUpButton。 我使用 NSArrayController.selection。填充生日和照片字段。 但是当我在 NSArrayController 的 NSPopUpButton 选择属性中选择一个名称时 没有改变。
换句话说,如何仅使用绑定来获取在 NSArrayController 的更改选择属性的 NSPopUpButton 中选择的对象(NSManagedObject)。
谢谢, 弗拉德
I want to achieve the following:
There is a list of persons (name, birthday, photo)
I want to select a person name in the NSPopUpButton and show
other details below.
How can I do it using bindings only?
I use NSArrayController to populate NSPopUpButton.
I use NSArrayController.selection. to populate birthday and photo fields.
But when I select a name in NSPopUpButton selection property of the NSArrayController
not changed.
In other words how can I get an object (NSManagedObject) selected in NSPopUpButton of change selection property of the NSArrayController using bindings only.
Thanks,
Vlad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经找到了解决方案。为此,我们必须将 NSPopUpButton 的选定索引绑定到 NSArrayController 的选择索引。
I have found the solution. To make it we have to bind selected index of the NSPopUpButton to the selectionIndex of a NSArrayController.