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