NSComboBoxDelegate 已调用,但旧的“stringValue”;遗迹

发布于 2024-11-19 05:16:43 字数 220 浏览 4 评论 0原文

我从组合框的下拉列表中选择一个值。 NSComboBox 委托会触发comboBoxSelectionDidChange: 通知,但是当我检索组合框的 stringValue 时,它​​是旧的选定值。如何获取更新后的值?

我指定了数据源,因此 itemObjectValueAtIndex:objectValueOfSelectedItem 不起作用。

I select a value from the drop-down of a combo box. The NSComboBox delegate fires a comboBoxSelectionDidChange: notification, but when I retrieve the stringValue of the combo box, it's the old selected value. How do I get the updated value?

I have a dataSource specified, so itemObjectValueAtIndex: and objectValueOfSelectedItem don't work.

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

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

发布评论

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

评论(2

冷情妓 2024-11-26 05:16:43

如果您使用数据源,那么:

NSString *s = [yourDataSource comboBox:comboBox
             objectValueForItemAtIndex:[comboBox indexOfSelectedItem]];

如果您的数据源提供字符串,则应该可以工作。否则,将此方法返回的对象转换为字符串。

If you’re using a data source, then:

NSString *s = [yourDataSource comboBox:comboBox
             objectValueForItemAtIndex:[comboBox indexOfSelectedItem]];

should work if your data source provides strings. Otherwise, convert the object returned by this method to a string.

帅的被狗咬 2024-11-26 05:16:43

此处

我使用以下方法获取了所选值:

NSString *strValue = [comboBox itemObjectValueAtIndex:[comboBox indexOfSelectedItem]];

From here:

I got the selected value using:

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