I need to loop through a fetchedResultsController but having some issues. Here is the code;
for (NSFetchedResultsController *singleResult in _fetchedResultsController) {
//For logic
}
The warning is;
Collection expression type 'NSFetchedResultsController *' may not respond to 'countByEnumeratingWithState:objects:count:'
What is the correct way to do this?