确定NSFetchedResultsController是否为空(不包含任何条目)的好方法是什么?我意识到可以使用fetchedObjects将所有结果加载到内存中吗?

最佳答案

fetchedObjects是一个数组,是一种检查0条记录的好方法。

您也可以使用

id <NSFetchedResultsSectionInfo> sectionInfo = [[_fetchedResultsController sections] objectAtIndex:section];
if([sectionInfo numberOfObjects] == 0)
{
  // do something
}

10-07 18:36