如何使用tableview导航到新视图/页面/屏幕

时间:2013-01-06 21:05:38

标签: view tableview

所以我使用tableview制作一个与搜索栏一起使用的列表,但现在我希望tableview中的各个部分在我按下时导航/转到新的视图/页面/屏幕,任何人都可以帮助我此?

1 个答案:

答案 0 :(得分:0)

你走了:

 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath  {
    [[self navigationController] pushViewController:[[SecondViewController alloc] initWithNibName:@"SecondView" bundle:[NSBundle mainBundle]] animated:YES];
 }