iphone tableview within detailview

Posted by pete on Stack Overflow See other posts from Stack Overflow or by pete
Published on 2010-03-26T21:42:19Z Indexed on 2010/03/26 21:43 UTC
Read the original article Hit count: 551

Filed under:

Hi, im pushing a "detailview" to a navigationcontroller (RootViewController.m)

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

"detailview" contains a tableview (DetailViewController.m)

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  //push seconddetailview into navigationcontroller - how can i do that?

}

how do i load the seconddetailView into the main navigationcontroller?

thanks

pete

© Stack Overflow or respective owner

Related posts about iphone-sdk