копирование и вставка из случайного проекта:
-(void)navigateToFAQ
{
UIViewController *faqBrowser = [[UIViewController alloc] autorelease];
[faqBrowser initWithNibName:@"faqBrowser" bundle:nil];
// EDIT: sorry, leave this out this is my own category to UIBarButtonItem!
//faqBrowser.navigationItem.leftBarButtonItem = [UIBarButtonItem arrowLeftWithText:@"back" target:self action:@selector(dismiss)];
[self.navigationController pushViewController:faqBrowser animated:YES];
faqBrowser.title = @"FAQ";
}
-(void)dismiss
{
[self.navigationController popViewControllerAnimated:YES];
}
звоните [self navigateToFaq]
с вашего didSelectRowAtIndexPath
и убедитесь, что у вас есть файл с именем faqBrowser.xib ...