使用字符串值填充 NSPopUpButtonCell
我正在尝试使用字符串列表填充 NSPopUpButtonCell。在 -(init) 中,我使用弹出按钮中所需的值填充 NSArray。如何将其连接到我在 IB 中添加的 NSArrayController?我的应用程序委托是否需要 IBOutlet NSArrayController 才能连接,或者是否有办法绑定它?
另外,当我将 NSArrayController 绑定到 NSPopUpButtonCell 时,我将它绑定到哪个内容?内容还是内容价值?
约吉
I am trying to populate a NSPopUpButtonCell with a list of strings. In -(init), I populate an NSArray with the values I want in the PopUp Button. How do I connect this to the NSArrayController I added in IB? Does my app delegate need an IBOutlet NSArrayController to connect to or is there a way to bind it?
Also, when I bind the NSArrayController to the NSPopUpButtonCell, do which Content do I bind it to? Content or Content Values?
jorj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将数组控制器的内容数组绑定到控制器的字符串数组。绑定弹出按钮单元格的 内容 和 内容值 到数组控制器的
arrangedObjects
。想必您还想知道选择了这些字符串中的哪一个。为此,请绑定弹出按钮单元格的 选定对象(将是内容中的对象之一)绑定到控制器的属性(拥有原始数组的控制器)。
Bind the array controller's Content Array to your controller's array of strings. Bind both the pop-up button cell's Content and Content Values to your array controller's
arrangedObjects
.Presumably, you also want to know which of these strings is selected. To do that, bind the pop-up button cell's Selected Object (which will be one of the objects in Content) to a property of your controller (the one that owns the original array).