Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on an iPhone and I'm using Core Data as my store.

What I'd like to do is list the top 50 entities in descending order by their height.

I'm struggling to find out the syntax for the predicate.

share|improve this question

1 Answer

up vote 29 down vote accepted

First, go to the NSFetchRequest class reference.

Use the sort descriptor to your fetch request :

NSSortDescriptor *sort = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES selector:@selector(caseInsensitiveCompare:)];
[request setSortDescriptors:[NSArray arrayWithObject:sort]];

And use the fetchLimit property

[request setFetchLimit:50];
share|improve this answer
Spot on, thank you – iOSDevil Dec 10 '09 at 14:42
1  
You're welcome ! Good luck – Francescu Dec 10 '09 at 21:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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