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

最佳答案

您始终可以使用以下命令访问NSFetchedResultsController的所有获取的对象

self.yourFetchedResultsController.fetchedObjects


您随时可以仔细解开fetchedObjects

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


希望能帮助到你

关于ios - 将NSFetchedResultsController的结果追加到数组swift,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44550359/

10-14 22:50