所以我使用tableview制作一个与搜索栏一起使用的列表,但现在我希望tableview中的各个部分在我按下时导航/转到新的视图/页面/屏幕,任何人都可以帮助我此?
答案 0 :(得分:0)
你走了:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[[self navigationController] pushViewController:[[SecondViewController alloc] initWithNibName:@"SecondView" bundle:[NSBundle mainBundle]] animated:YES];
}