新しいコントローラーをnavigationControllerにプッシュしようとしていますが、なぜ起動しないのかわかりません。1)secondViewControllerのインスタンスも動作しないことを確認しました。2)。'.xib "の接尾辞を試しましたが、これも機能しません。3)bundle:nilも機能しません。
ARCを使用しています。誰かがここで問題が何であるかを指摘できますか?
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@" YOU SELECTED ROW ..");
secondViewController *secController = [[secondViewController alloc] initWithNibName:@"secondViewController.xib" bundle:[NSBundle mainBundle]];
NSLog (@"View Controller %@ ", secController);
[self.navigationController pushViewController:secController animated:YES];
}