如何禁用 NSTableVIew 中的排序?

发布于 2024-10-05 06:52:43 字数 161 浏览 3 评论 0 原文

我有一个 NSTableView ,每当我单击特定的标题列时,表中的数据就会反转或颠倒排序。我已经检查了 NSTableView 以及 NSTableColumn 但找不到任何禁用此功能的方法。如果有人可以帮助在单击特定列的标题时禁用此排序,我将不胜感激。

I have a an NSTableView when ever I click on a specific header column the data in the table get reversed or sort upside down. I have checked NSTableView as well as NSTableColumn but couldn't find any method that disables this. I would be obliged if anyone can help in disabling this sorting on clicking on the header of a particular column.

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

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

发布评论

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

评论(1

黯然 2024-10-12 06:52:43

NSTableView 的排序是通过其 sortDescriptors 完成的,请参阅 此处

NSTableColumn 使用其 sortDescriptorPrototype (请参阅 此处)生成 NSTableView 的排序描述符,具体取决于单击列标题的次数等。

如果使用 dataSource 来管理数据,则排序描述符通过委托方法 tableView:sortDescriptorsDidChange: 进行通信,请参阅这里。您只需忽略更改消息即可停止排序。

如果您使用 Cocoa 绑定来管理数据,则排序描述符由表列生成并设置为 NSArrayController。要停止它,只需打开表列绑定的检查器,选择,然后取消选中“创建排序描述符”。

Sorting of the NSTableView is done by its sortDescriptors, see here.

An NSTableColumn uses its sortDescriptorPrototype (see here) to generate the sort descriptor of the NSTableView, depending on how many times you clicked the column header, etc.

If you use dataSource to manage the data, then the sort descriptor is communicated via the delegate method tableView:sortDescriptorsDidChange:, see here. You just need to ignore the change message to stop sorting.

If you use Cocoa bindings to manage the data, the sort descriptor is generated by the table column and set to the NSArrayController. To stop it, just open the inspector of the binding of the table column, select value, and uncheck "Creates Sort Descriptor."

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