限制 NSArrayController 中对象的数量
我正在尝试在我的应用程序中创建某种“前 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将排序描述符添加到同一数组控制器,将其选择索引设置为范围
{ 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 itsselection
or itsselectedObjects
.另一种策略是子类化 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.