2010-10-29 9 views

Répondre

0

Définissez le selectedBackgroundView de UITableViewCell à votre vue personnalisée.

+0

PhraseSelectedCellViewController * phrView = [[PhraseSelectedCellViewController alloc] initWithFrame: CGRectMake (0, 0, 320, 60)]; [cell.contentView addSubview: phrView]; cell.selectedBackgroundView = phrView; \t [version de phrCom]; est ok? – raien

+0

Je l'ai fait. Merci – raien

2
 #define kCellHeight 50 //Replace '50' with Height of your UITableViewCell 
     #define kSelectedCellBackgroundImage @"nameOfYourImage" //replace value inside "" with name of your image 

     UIImageView *selectedBackgroundView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, kCellHeight)]; 
     [selectedBackgroundView setImage:[UIImage imageNamed:kSelectedCellBackgroundImage]]; 
     [cell setSelectedBackgroundView:selectedBackgroundView]; 
     [selectedBackgroundView release]; 
Questions connexes