-(BOOL)tableView:(UITableView*)tableViewcanEditRowAtIndexPath:(NSIndexPath*)indexPath{// Return NO if you do not want the specified item to be editable.// TODO: セル削除を可能にする時はYESに変更することreturnNO;}
もしくは、以下のメソッドをコメントアウト。
123456789
-(void)tableView:(UITableView*)tableViewcommitEditingStyle:(UITableViewCellEditingStyle)editingStyleforRowAtIndexPath:(NSIndexPath*)indexPath{if(editingStyle==UITableViewCellEditingStyleDelete){[_objectsremoveObjectAtIndex:indexPath.row];[tableViewdeleteRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationFade];}elseif(editingStyle==UITableViewCellEditingStyleInsert){// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view.}}