Key-Value 观察 an 的一对多关系NSMutableArray
似乎是一种自动更新具有单个部分和许多行的 tableview的好技术。但是,我的表格视图是分组的,更自然地适合有一个数组,sections
其中的每个对象都是一个包含该部分行的数组。当部分的数量是动态的时,我有什么方法可以使用 KVO 来观察row
数组中的数组?sections
最终,我想在NSFetchedResultsControllerDelegate
不使用 Core Data 的情况下实现与方法类似的东西:
- (void)controller:(NSFetchedResultsController *)controller
didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo
atIndex:(NSUInteger)sectionIndex
forChangeType:(NSFetchedResultsChangeType)type
- (void)controller:(NSFetchedResultsController *)controller
didChangeObject:(id)object
atIndexPath:(NSIndexPath *)indexPath
forChangeType:(NSFetchedResultsChangeType)type
newIndexPath:(NSIndexPath *)newIndexPath