Hi,
I got a CommentaireViewController in a UITabBarController and contains a tableView:
UITabBarController-->CommentaireViewController-->UITableView.
My problem is that i cant move to the next view "CommentaireDetailsViewController" when i click on one of my cells.
here my code:
Code:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
CommentaireDetailsViewController *cdvc = [[CommentaireDetailsViewController alloc] initWithNibName:@"CommentaireDetailsViewController" bundle:nil];
[self.navigationController pushViewController:cdvc animated:YES];
[cdvc release];
[self.tabBarController setHidesBottomBarWhenPushed:YES];
}
I need your help...