-3

我正在开发一个通用应用程序。因为我使用的是UITableView.I 动态创建的。我写了下面的代码。didSelectRowAtIndexPath但它没有移动到下一页。请告诉我如何做到这一点。

FirstViewController *fst =[[FirstViewController alloc]init]; 
[self.navigationController pushViewController:fst animated:YES];
4

1 回答 1

0

您需要在此处提供 nil 文件的参考。

FirstViewController *fst =[[FirstViewController alloc]initWithNibName:@"abc.xib"]; 
[self.navigationController pushViewController:fst animated:YES];
于 2012-07-12T10:16:20.710 回答