私はこれがよく使われているのを見ますが、それが何をするのかわかりません。
animated:YES
また
animated:NO
たとえば、viewDidLoad メソッドでは、このコードを使用できます
self.tableView.allowsSelectionDuringEditing = YES;
そしてviewWillAppearには、このコードがあるかもしれません
// some code here, and/or acondition is met, therefore put the tableview in editing mode
[self setEditing:YES animated:NO];
もう一度言いますが、どういうanimated:NO
意味ですか?animated:NO
とはどう違いanimated:YES
ますか?アプリケーションに目に見える違いや機能的な違いは見られません。