I have a SQLite-backed core data storage and would like to fetch a list of managed objects using NSFetchRequest
. I want said list to be sorted by a boolean value that can be easily calculated at the database level. I know this because it’s possible to formulate the same conditions using an NSPredicate
, which would look as follows:
[NSPredicate predicateWithFormat:@"uid = %@", currentUID]
Sadly, there seems to be no way to formulate a condition like this using an NSSortDescriptor
. How do I best go about this? Do I fetch two lists, one with
[NSPredicate predicateWithFormat:@"uid = %@", currentUID]
and one with
[NSPredicate predicateWithFormat:@"uid != %@", currentUID]
and combine them later on? Can I then still elegantly use a NSFetchedResultsController
?
Or should I fetch all items and sort them later in code? Or is there anything I’ve missed.
What you're asking for doesn't make sense.
A predicate is used to select which objects should be returned in a set of results. This is determined by evaluating the predicate against each object to see if the predicate evaluates to
YES
orNO
(a binary value, or one of 2 possible values). If it evaluates toYES
, then the object is included. If it evaluates toNO
, then the object is excluded. There is no middle ground.By contrast, a sort descriptor evaluates to
less than
,equal
, orgreater than
. In other words, it is a ternary value (it can be one of 3 things). There is no way to express a ternary value with a predicate (since a predicate is binary), and so using a predicate as a sort descriptor makes absolutely no sense. The API doesn't allow it, because logic doesn't allow it.So the real question is: what are you trying to do? Why do you think you need a predicate in your sort descriptors?