I\'m developing for iPhone iOS 4.0 and I have a list of birthday objects (date + name) stored using Core Data. I want to use the NSFetchedResultsController to retrieve this
Sorting inside of the NSFetchedResultsController
is performed at the persistent store level so if you are using SQLite as the backend it will fail.
For something like this I would de-normalize the data and store the month and day of month in addition to the actual birthdate so that you can sort on them.