Core Data NSFetchedResultsController sections

372 Views Asked by At

How can I insert a section that doesn't exist in the database into the fetched results? I'd like to do what the iOS calendar app does. When there are no events for the current day, it still shows a section title.

1

There are 1 best solutions below

0
On

You could handle this manually in your table view's data source / delegate.

If the fetched results controller doesn't have any sections, then return one from numberOfSectionsInTableView: and the name or view for the section header from tableView:titleForHeaderInSection: or tableView:viewForHeaderInSection:.