将NSFetchedResultController的结果附加到数组swift

时间:2017-06-14 16:41:57

标签: ios arrays swift core-data

我想在NSFetchedresultController的单独部分中显示UITableview的结果。

1 个答案:

答案 0 :(得分:0)

您始终可以使用

访问NSFetchedResultsController的所有已获取对象
self.yourFetchedResultsController.fetchedObjects

您始终可以小心打开fetchedObjects

if let arrayOfYourObjects = self.yourFetchedResultsController.fetchedObjects {
     otherArray.appendContentsOf(arrayOfYourObjects)
}

希望有所帮助