Мой UITableViewCell не удаляется при вызове метода.Я могу заставить его распечатать ячейку, которую предполагается удалить, но она не удалит себя и не удалит себя из массива.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *thisCell = [tableView cellForRowAtIndexPath:indexPath];
[customData removeObjectIdenticalTo:thisCell.textLabel.text];
NSLog(@"%@", customData);
[thisCell removeFromSuperview];
[tabler reloadData];
}