Search code examples
uitableviewstoryboarddetailview

How to open view controller from didSelectRowAtIndexPath within storyboard?


I have a storyboard with tabbarcontroller. One of tab bar has a tableview and I want that when the user tap in a row from tableview open a detail view. The problem is when I open detail view tab bar and navigation bar hides... In the storyboard I create the detail view as a new view controller, then I create a new file and referred it to the class of detail view .

The code in didselectrowatindexpath:

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

detalleYouTube *dvController = [[detalleYouTube alloc] init];

[self.navigationController pushViewController:dvController animated:YES];

}

Thank you in advance!


Solution

  • I presume you have the 'Detail' view as part of the storyboard (not in a separate XIB), if so you will need to place a separate NavigationController at the start of the 'Detail' TabBarItem seque.

    This page has a good tutorial on what I think your trying to achieve: http://maybelost.com/2011/10/tutorial-storyboard-in-xcode-4-2-with-navigation-controller-and-tabbar-controller-part1/

    Also check these links to a more in-depth Storyboard tutorial:

    http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1

    http://www.raywenderlich.com/5191/beginning-storyboards-in-ios-5-part-2