1

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

4

1 回答 1

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];
     */
}
于 2012-12-28T13:46:34.723 回答