限制 NSArrayController 中对象的数量

发布于 2024-07-16 13:51:42 字数 99 浏览 4 评论 0原文

我正在尝试在我的应用程序中创建某种“前 25 名”列表。 我已经使用 NSPredicate 来过滤数组控制器的内容,但我想将结果的数量限制为仅 25 个对象。 我怎么能这么做呢?

I'm trying to create some kind of "Top 25" list in my app. I've used NSPredicate to filter the contents of the array controller but I want to limit the number of the results to just 25 objects. How could I do that?

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

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

发布评论

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

评论(2

冷夜 2024-07-23 13:51:42

将排序描述符添加到同一数组控制器,将其选择索引设置为范围 { 0, 25 },然后绑定到(或直接访问)其 selection 或其选定的对象

Add sort descriptors to the same array controller, set its selection indexes to the range { 0, 25 }, then bind to (or directly access) either its selection or its selectedObjects.

素手挽清风 2024-07-23 13:51:42

另一种策略是子类化 NSArrayController 并覆盖arrangedObjects以返回类似 [[superarrangedObjects] subarrayWithRange:NSMakeRange( 0, 25 )]; 的内容(您可能需要首先检查数组的长度) 。 当然,这个阵列控制器只适用于前 25 个,而不适用于您的应用程序中的其他地方。

Another strategy would be to subclass NSArrayController and override arrangedObjects to return something like [[super arrangedObjects] subarrayWithRange:NSMakeRange( 0, 25 )]; (you would probably want to check the length of the array first). Of course this array controller would only be good for the top 25, and nowhere else in your application.

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