Ios – indexPathForSelectedRow returning nil

iosnulluitableview

I have a UITableViewController with a segue where I'm trying to get the currently selected row:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    if([[segue identifier] isEqualToString:@"EditFilterElementSegue"]){
        // Get the element that was clicked and pass it to the view controller for display
        NSIndexPath *selectedIndexPath = [self.tableView indexPathForSelectedRow];
        Element *element = [fetchedResultsController objectAtIndexPath:selectedIndexPath];
        FilterElementTableViewController *vc = segue.destinationViewController;
        vc.filter = filter;
        vc.element = element;
    }
}

The problem is indexPathForSelectedRow is returning nil. The docs say nil is returned "if the index path is invalid". If I add:

        [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES scrollPosition:0];
        selectedIndexPath = [self.tableView indexPathForSelectedRow];

selectedIndexPath is valid. So, I'm currently assuming the row is somehow getting unselected. Can anyone tell me how to figure out if this is the case and what might be causing it?

This code worked fine until I converted to using NSFetchedResultsController (which otherwise is working). I also use indexPathForSelectedRow in several other table view controllers where it works fine (one of which also uses NSFetchedResultsController).

I've also tried breaking in didSelectRowAtIndexPath, but the same thing happens there. (expected since it's called after prepareForSegue.)

Best Answer

A possible cause is that you've written something in one of the UITableViewDelegate methods -

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
}

It's a common practice to deselect the row which has just been selected.

Update:

In Swift 4.2, xcode 10:

Just comment the line

tableView.deselectRow(at: indexPath, animated: true)

in the function

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
Related Topic