I am using an NSFetchedResultsController and I would like to create two sections in my table based on a date field in my entity. I don't want to section based on the individual dates, but I'd like to have one section where that date field is nil and one section where that date field is not nil.
Is there a way to use the sectionNameKeyPath
to achieve this? If not, how should I go about sectioning my fetched results table based on a nil vs non-nil value?