我使用NSFetchedResultsController作为核心数据。
并实现controllerWillChangeContent()方法。
self.collectionView.beginUpdates()
显示来自Xcode 8,swift 3的错误。
任何建议。
答案 0 :(得分:11)
beginUpdates
来自UITableView
。 UICollectionView
具有performBatchUpdates(_:completion:)
方法。
我建议您查看this answer,了解有关使用NSFetchedResultsController
和UICollectionView
的信息。