Como criar NSIndexPath para TableView

Preciso excluir a linha 1 de uma tabela em uma função que defini. Para ser usadodeleteRowAtIndexPath você deve usar umIndexPath com uma seção e linha definidas. Como posso criar um caminho de índice como este?

Uma matriz com o int {1} como seu único membro falhará; a mensagem NSLog indica que a seção também precisa ser definida.

* Editar -> Código relacionado à exclusão de célula:

    NSIndexPath *myIP = [[NSIndexPath alloc] indexPathForRow:0 inSection:0];
    NSArray *myArray = [[NSArray alloc] initWithObjects:myIP, nil];
//  [self.tableView beginUpdates];
    [self.tableView deleteRowsAtIndexPaths:myArray withRowAnimation:UITableViewRowAnimationFade];
//  [self.tableView endUpdates];

questionAnswers(4)

yourAnswerToTheQuestion