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?

link|improve this question

73% accept rate
feedback

3 Answers

up vote 7 down vote accepted

The real beauty to UIStoryBoards are the segues. 1. You can link a prototype cell push segue to another different table view controller 2. You can link a prototype cell push segue loop back to itself for drill downs.

[self performSegueWithIdentifier:@"segueID" sender:MyObject];

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  if([segue.identifier isEqualToString:@"segueID"]) segue.destinationViewController.chosenCell = sender;
}

If the segue is from the cell click, the sender is that of the cell and you can get it's indexpath from the table, and pass new information to the upcoming view controller. If you want the cell to take various paths when clicked, keep the didSelectRowAtIndexPath and call performSegueWithIndetifier so you can choose left or right.

link|improve this answer
Do you know of a tutorial or book that describes how to do this please? – Anmar Jan 21 at 23:23
Sure, I wrote one up here just now. Hope that helps. jleeiii.blogspot.com/2012/01/uistoryboard-power-drill.html – LeeIII Jan 24 at 12:55
Best tutorial on subject thanks for this effort – Anmar Jan 25 at 8:27
More than a tutorial now, sample by request. jleeiii.blogspot.com/2012/05/… – LeeIII May 10 at 11:34
Thank you for this! – Anmar May 10 at 18:59
feedback

I was extremely frustrated with this, as the storyboards with tableviews is really not covered ANYWHERE. I literally almost pulled my hair out trying to figure this out. So my frustration is your luck!

Comparing your code to mine, yours looks fine other than the fact that in the initial didSelectRowAtIndexPath: method, you have *_strong, which should not have the _strong part. It should just be like this: (NSIndexPath *)indexPath {

Additionally, be careful in when you are referring to the instantiateViewControllerWithIdentifier in Interface Builder. I accidentally filled out the name of the instance variable under 'TITLE' instead of 'IDENTIFIER'

I hope this helps. I completely understand your frustration.

link|improve this answer
Thanks for the tips, so how can I get in a master table row 1 to point to one table and row 2 to point to another? – Anmar Dec 31 '11 at 1:57
feedback

In your storyboard, if the content is Static Cells, you can ctrl-drag from the specific row to a Navigation Controller. Then connect the Navigation Controller to your next table. Look at this screen shot. http://cl.ly/1V2y0v202y390U0A351x

My guess is that progromatically, you'll need to do something similar, segue to a NavigationController which has a table view controller as it's root view.

link|improve this answer
Corrected iphonesdkarticles.com/2009/03/… – Anmar Jan 25 at 7:03
feedback

Your Answer

 
or
required, but never shown

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