En fait, j'ai trouvé quelque fil que poser une question comme le mien. mais toutes les solutions qui figure dans ces fils ne peut pas être utilisé dans mon code .. le dernier lien que j'ai lu est How to customize the background color of a UITableViewCell?Comment changer la couleur d'arrière-plan de UITableViewCell en utilisant ma propre combinaison de couleurs
mon problème est que je veux juste changer ma couleur de fond tableviewcell avec ma propre couleur. quelqu'un peut-il m'aider ??
les cellules i mean .. –
Afficher le code que vous avez essayé dans willDisplayCell: forRowAtIndexPath: (la méthode entière incluant le nom et les paramètres de la méthode). Utilisez-vous UITableViewCell ou une sous-classe personnalisée? – Anna
- (void) tableView: (UITableView *) tableView wilLDisplayCell: (UITableViewCell *) forRowAtIndexPath cellulaire: (NSIndexPath *) indexPath { \t UIView * backgroundView = [[[UIView alloc] initWithFrame: CGRectZero] autorelease]; \t backgroundView.backgroundColor = [UIColor yellowColor]; \t cell.backgroundView = backgroundView; \t pour (UIView * vue en cell.contentView.subviews) \t { \t \t view.backgroundColor = [UIColor clearColor]; \t} \t \t //cell.backgroundColor = [UIColor colorWithRed: 0,2 vert: 0,2 bleu: 0.5 alpha: 1]; \t } –