I'm trying to determine the indexPath of the select row of my UITableView so I can pass the relevant data accordingly. Right now it keeps logging 0 no matter what cell I select. Any ideas why? (Yes, the IBOutlet for the table is hooked up properly).

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([[segue identifier] isEqualToString:@"patientChart"])
    {
        UITabBarController *tabBar = (UITabBarController *)segue.destinationViewController;
        PatientChartViewController *vc = [tabBar.childViewControllers objectAtIndex:0];
        NSIndexPath *path = [self.appointmentTableView indexPathForSelectedRow];
        vc.appointmentDictionary = [self.appointmentArray objectAtIndex:path.row];
    }
}
link|improve this question

Do you deselect cell after it was selected? – Nekto Nov 16 '11 at 6:21
You're right. I moved the deselect line to before the performSegue line and works fine now. Thanks. – ProgramGuy Nov 16 '11 at 6:27
If it won't be a problem to you I will post it as an answer and I'll be thankfull if u'll accept it =) – Nekto Nov 16 '11 at 6:31
feedback

2 Answers

up vote 1 down vote accepted

Method indexPathForSelectedRow will return index of selected row if row is selected or 0 otherwise.

So, for example, if cell has been selected and later deselected then you won't get its index path by calling [tableView indexPathForSelectedRow]; because no one cell is selected at that time.

link|improve this answer
feedback
If using iOS5 the solution for this is declare an instance in .h and set property to copy as shown below.

NSIndexPath *path;

@property (nonatomic, copy) NSIndexPath *path;

Assign the indexpath value to the instance i.e path in cellForRowAtIndexPath method.

I encountered this issue when tried to execute this on iOS5 and get it resolved as mentioned above. Hope this help u.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.