2010-04-26 7 views

Répondre

2

Vous avez besoin de mettre cela dans la méthode déléguée -tableView:cellForRowAtIndexPath: initialisant et retourne les cellules pour la vue de la table:

- (UITableViewCell *) tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
    // initialize cell and contents here, for the specified indexPath value 
} 

Vous voudrez peut-être lire le Table View Programming Guide for iPhone OS, ce qui explique cela en détail.

Questions connexes