diff --git a/Leanote/controller/note/NoteController.m b/Leanote/controller/note/NoteController.m index 7215436..e14fd9a 100755 --- a/Leanote/controller/note/NoteController.m +++ b/Leanote/controller/note/NoteController.m @@ -724,7 +724,10 @@ case NSFetchedResultsChangeDelete: [tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade]; - break; + break; + case NSFetchedResultsChangeUpdate: + case NSFetchedResultsChangeMove: + break; } } diff --git a/Leanote/controller/notebook/NotebookController.m b/Leanote/controller/notebook/NotebookController.m index 8203226..b34f38d 100755 --- a/Leanote/controller/notebook/NotebookController.m +++ b/Leanote/controller/notebook/NotebookController.m @@ -693,6 +693,9 @@ [tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade]; break; + case NSFetchedResultsChangeMove: + case NSFetchedResultsChangeUpdate: + break; } } diff --git a/Leanote/controller/tag/TagController.m b/Leanote/controller/tag/TagController.m index d3ec089..e0cefde 100755 --- a/Leanote/controller/tag/TagController.m +++ b/Leanote/controller/tag/TagController.m @@ -573,6 +573,9 @@ [tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade]; break; + case NSFetchedResultsChangeMove: + case NSFetchedResultsChangeUpdate: + break; } }