Tengo un UITableView
y he subclasificado UITableViewCell
(lo llamó CustomCell
) por lo que tiene varias etiquetas y un UIImageView
.UITableView y Cell Reuse
Solo algunas celdas mostrarán una imagen. Aquí está mi código para tableView:cellForRowAtIndexPath:
:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
Match *aMatch = [[appDelegate.matchByDate objectAtIndex:indexPath.section] objectAtIndex:indexPath.row];
static NSString *CellIdentifier = @"Cell";
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[CustomCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
cell.homeLabel.text = aMatch.homeTeam;
cell.awayLabel.text = aMatch.awayTeam;
cell.timeLabel.text = aMatch.koTime;
cell.tournamentLabel.text = aMatch.tournament;
NSString *tempString = [appDelegate.teamLogos objectForKey:[aMatch homeTeam]];
if (tempString!=nil) {
cell.homeImageView.image = [UIImage imageNamed:tempString];
}
return cell;
}
lo tanto, sólo establece el homeImageView
cuando encuentra una imagen correspondiente en un diccionario que he levantado. Esto parece funcionar para las primeras celdas, pero si me desplazo por la lista, creo que las celdas tienen una imagen cuando no deberían tener una.
Entiendo que esto es probablemente debido a que la celda se reutiliza, pero estoy configurando el homeImageView
después de que la celda se ha creado/reutilizado?
Aquí está el método init de mi clase CustomCell
- (id)initWithStyle:(UITableViewCellStyle)style
reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
// Initialization code
tournamentLabel = [[UILabel alloc] init];
tournamentLabel.textAlignment = UITextAlignmentCenter;
tournamentLabel.font = [UIFont systemFontOfSize:12];
tournamentLabel.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
tournamentLabel.textColor = [UIColor darkGrayColor];
homeLabel = [[UILabel alloc]init];
homeLabel.textAlignment = UITextAlignmentLeft;
homeLabel.font = [UIFont systemFontOfSize:16];
homeLabel.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
awayLabel = [[UILabel alloc]init];
awayLabel.textAlignment = UITextAlignmentRight;
awayLabel.font = [UIFont systemFontOfSize:16];
awayLabel.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
timeLabel = [[UILabel alloc]init];
timeLabel.textAlignment = UITextAlignmentCenter;
timeLabel.font = [UIFont systemFontOfSize:30];
timeLabel.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
timeLabel.textColor = [UIColor darkGrayColor];
homeImageView = [[UIImageView alloc]init];
awayImageView = [[UIImageView alloc]init];
[self.contentView addSubview:homeLabel];
[self.contentView addSubview:awayLabel];
[self.contentView addSubview:timeLabel];
[self.contentView addSubview:tournamentLabel];
[self.contentView addSubview:homeImageView];
[self.contentView addSubview:awayImageView];
}
return self;
}
Gracias que funcionaba un lujo! Aunque todavía no entiendo por qué tengo que hacer eso cuando mi CustomCell no tiene homeViewView configurado en init? –
debido a la reutilización de células. 'dequeueReusableCellWithIdentifier' le devolverá una celda que ya ha sido utilizada. Si contenía una imagen en su primer uso, aún contendrá la misma imagen ahora que se le devuelve desde el grupo de reutilización. Por lo tanto, debe restablecer todas las propiedades de la celda que podrían haber sido configuradas en un ciclo anterior. –
Gracias por eso. Entiendo cómo las células se vuelven a usar ahora –