带导航栏的Tableview

时间:2012-12-28 12:58:37

标签: xcode

我正在使用Xcode 4.5.2。我已经以编程方式创建了一个自定义tableview。当我点击一行时,我需要移动到下一个视图。有没有办法做到这一点?。

1 个答案:

答案 0 :(得分:0)

在点击表格视图单元格时,请使用以下代码移动到另一个视图控制器。

#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Navigation logic may go here. Create and push another view controller.
    /*
     <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
     // ...
     // Pass the selected object to the new view controller.
     [self.navigationController pushViewController:detailViewController animated:YES];
     */
}