vote up 0 vote down star

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?

flag

2 Answers

vote up 1 vote down check

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.

link|flag
vote up 3 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.