2011-06-22 78 views
0

UITableView問題:從NSFetchedResultsController中刪除部分時更新UITableView

我使用Core Data和這個委託方法來更新我的表格視圖(當然還有幾個willChange和didChange)

- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo 
     atIndex:(NSUInteger)sectionIndex 
forChangeType:(NSFetchedResultsChangeType)type { 

爲什麼我的表視圖下的部分如果我不知道就不會更新在這個委託方法的最後請問reloadData?

回答

0

很難說沒有看到你的代碼。但是,看起來很愚蠢,你可能忘記了設置NSFetchedResultsController的委託。在你的代碼中檢查這個。

相關問題