我想在NSFetchedresultController
的单独部分中显示UITableview
的结果。
答案 0 :(得分:0)
您始终可以使用
访问NSFetchedResultsController的所有已获取对象self.yourFetchedResultsController.fetchedObjects
您始终可以小心打开fetchedObjects
if let arrayOfYourObjects = self.yourFetchedResultsController.fetchedObjects {
otherArray.appendContentsOf(arrayOfYourObjects)
}
希望有所帮助