0
我有兩個表格,當我檢查第一個表格中的項目時,它將添加到第二個表格中,並且此部分工作正常。現在,當我從第一個表中取消選中時,我想從第二個表中刪除相同的項目。我正在使用CoreData如何使用NSFetchedResultsController在另一個表中點擊同一項目時從一個表中刪除項目
謝謝。
我有兩個表格,當我檢查第一個表格中的項目時,它將添加到第二個表格中,並且此部分工作正常。現在,當我從第一個表中取消選中時,我想從第二個表中刪除相同的項目。我正在使用CoreData如何使用NSFetchedResultsController在另一個表中點擊同一項目時從一個表中刪除項目
謝謝。
如果您使用核心數據,則應從上下文和兩個表中刪除對象。 確保您實現這些功能在你的表:
- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller {
[self.tableView beginUpdates];
}
- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo
atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type {
switch(type) {
case NSFetchedResultsChangeInsert:
[self.tableView insertSections:[NSIndexSet indexSetWithIndex:sectionIndex]
withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeDelete:
[self.tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex]
withRowAnimation:UITableViewRowAnimationFade];
break;
}
}
- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject
atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type
newIndexPath:(NSIndexPath *)newIndexPath {
UITableView *tableView = self.tableView;
switch(type) {
case NSFetchedResultsChangeInsert:
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath]
withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeDelete:
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeUpdate:
[self configureCell:[tableView cellForRowAtIndexPath:indexPath]
atIndexPath:indexPath];
break;
case NSFetchedResultsChangeMove:
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
withRowAnimation:UITableViewRowAnimationFade];
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath]
withRowAnimation:UITableViewRowAnimationFade];
break;
}
}
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller {
[self.tableView endUpdates];
}
我只是想刪除第二個表中的數據,它不應該首先從表中刪除。 – abhishek 2012-01-04 10:39:02
這不是你問你的問題。請更好地解釋你自己,我會盡力幫忙。 – shannoga 2012-01-04 12:33:07