I currently have a Core Data application that supports SQLite, where I retrieve records sorted by first name and then lastName.
The problem is that I have names like this (John Doe)and they go back to the top of the list, it seems the default sorting behavior is done in ASCII sort order.
Is there any way to make these entries appear after Z?
I read about custom sorting descriptors, but they don't seem to work because Core Data goes back to SQLite for sorting.
Update
Here is an example of a list of my data now
(Abe Simpson)
(Bob Dole)
(Chris Rock)
Alan West
Brian Regan
What I want it to look like
Alan West
Brian Regan
(Abe Simpson)
(Bob Dole)
(Chris Rock)