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];
}
}