我正在开发一个通用应用程序。我正在使用UITableView
。我动态地创建了那个。{1}}。我在didSelectRowAtIndexPath
中编写了以下代码。但它没有转到下一页。请告诉我如何做到这一点。
FirstViewController *fst =[[FirstViewController alloc]init];
[self.navigationController pushViewController:fst animated:YES];
答案 0 :(得分:0)
您需要在此处提供nil文件的参考。
FirstViewController *fst =[[FirstViewController alloc]initWithNibName:@"abc.xib"];
[self.navigationController pushViewController:fst animated:YES];