新しいコントローラをnavigationControllerにプッシュしようとしましたが、なぜウォーキングしていないのかわかりません。 1)secondViewControllerのインスタンスもチェックされていません。 2)。また、動作していない、」.xib」を接尾辞を付ける試みた 3)バンドルをしようとしました:。。nilはまた、動作していないサブビューをnavigationControllerにプッシュできません
私は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];
}
なぜARCを使用していますが、ストーリーボードは使用していませんか?それはあなたの問題を解決するかもしれません。また、UINavigationControllerのインスタンス化のようなコードをいくつか追加できますか?それは何もしないで、空白に入って、クラッシュですか? secControllerのNSLogは何を示していますか? –
MainWindow.xibファイルにUINavigationControllerを実装しましたか? – akk