2009-06-12 9 views

Répondre

2

Dans votre méthode déléguée:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath] 
nextViewController.title = cell.text; 
[self.navigationController pushViewController:nextViewController animated:YES]; 

} 
+0

Correction nécessaire ici dans le code ci-dessus: La ligne doit être lu comme UITableViewCell * cellule = [tableView cellForRowAtIndexPath: indexPath] et non comme indexpath.row. –