I am trying to make a drill down table with storyboards in a Tab bar app. I am having a problem with working out how to get each row in a main table to point to other different tables.
This is the code I have used to detect row selection.
-(void)tableView: (UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *__strong)indexPath {
TableViewController *table = [self.storyboard instantiateViewControllerWithIdentifier:@"table"];
[self.navigationController pushViewController:table animated:YES];
}
How do I proceed please?