I am initialising NSFetchedResultsController
with following code
self.fetchedResultsController = NSFetchedResultsController(
fetchRequest: request,
managedObjectContext: context,
sectionNameKeyPath: "article.name",cacheName: nil
)
Here articles can have same name.So article.name
sectionNameKeyPath
is non unique.In this case fetchedResultsController
will have only single section.
How can I handle multiple section with same section name?