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

I've found the following in the Predicates > Aggregate Operations documentation (p.29 in PDF format):

array[SIZE]

Specifies the size of the array array.

This sounds like I can count the items in a fetched property, but it does not return the number of items - it returns the last one. Does anyone know whether counting the items works? What I have to do to make it work?

In detail: There is a fetched property in my Core Data model, called "neighbors". It contains a list of neighbor objects. Now I defined a second fetched property, called "position", for which I defined the following predicate:

neighbors[SIZE]

Instead of filling the position attribute with a number, the object at the last position is there. Neither work any of the following:

SELF.neighbors[SIZE]

neighbors.count

Every hint is welcome. To circumvent the whole issue, I can also use tips on how to sort results in an NSFetchResult using a block (instead of just selectors).

Regards, nobi

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.