Hi,
If you don't mind doing it in code. All you have to do is implement the
Code:
- (void)tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)indexPath
and return the correct view controller class like this
Code:
DCFAQWebView *faqWebView = [[DCFAQWebView alloc] initWithNibName:DC_FAQ_WEB_VIEW_CONTROLLER
bundle:nil];
[self.navigationController pushViewController:faqWebView animated:YES];
[faqWebView release];