UILabel неправильно выпустить в UITableViewCell - PullRequest
0 голосов
/ 16 июля 2011

У меня есть пользовательский UITableViewCel, как это:

@synthesize poiNameLabel;
@synthesize poiDistanceLabel;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
        // Initialization code
        CGRect nlabelframe = CGRectMake(NAMELABEL_X, NAMELABEL_Y, NAMELABEL_WIDTH, NAMELABEL_HEIGHT);
        UILabel *nlabel = [[UILabel alloc] initWithFrame:nlabelframe];
        nlabel.font = [UIFont fontWithName:@"Arial" size:NAMELABEL_FONT];
        nlabel.backgroundColor = [UIColor clearColor];
        nlabel.minimumFontSize = NAMELABEL_FONT_MIN;
        //nlabel.adjustsFontSizeToFitWidth = YES;
        [self addSubview:nlabel];
        self.poiNameLabel = nlabel;
        [nlabel release];

        CGRect dlabelframe = CGRectMake(DISTANCELABEL_X, DISTANCELABEL_Y, DISTANCELABEL_WIDTH, DISTANCELABEL_HEIGHT);
        UILabel *dlabel = [[UILabel alloc] initWithFrame:dlabelframe];
        dlabel.font = [UIFont fontWithName:@"Arial" size:DISTANCELABEL_FONT];
        dlabel.backgroundColor = [UIColor clearColor];
        dlabel.minimumFontSize = DISTANCELABEL_FONT_MIN;
        dlabel.adjustsFontSizeToFitWidth = YES;
        [self addSubview:dlabel];
        self.poiDistanceLabel = dlabel;
        [dlabel release];

        self.contentView.backgroundColor = [UIColor clearColor];
        self.contentView.opaque = NO;

    }
    return self;
}


- (void)setSelected:(BOOL)selected animated:(BOOL)animated {

    [super setSelected:selected animated:animated];

}

- (void)dealloc {
    [super dealloc];
    [poiNameLabel release];
    [poiDistanceLabel release];
}

и вот как я его заполняю:

NSDictionary *dic = [[NSDictionary alloc] initWithDictionary:[poisSource objectAtIndex:row]];
ResultsViewCell *cell = [[[ResultsViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.poiNameLabel.text = [dic objectForKey:@"name"];
float distance = [[dic objectForKey:@"distance"] floatValue];
NSString *distanceWithUnity;
distance = distance*1000;
if (distance > 1000) {
    distanceWithUnity = [NSString stringWithFormat:@"%.2f km", distance/1000];
} else {
    distanceWithUnity = [NSString stringWithFormat:@"%.0f mt", distance];
}
cell.poiDistanceLabel.text = distanceWithUnity;
[dic release];
return cell;

Все в порядке, но когда UITableCell освобожден, я получаю BAD_ACCESS, освобождая poiDistanceLabel.
Я не вижу проблем в своем коде, не сохраняю ошибки, поэтому не могу понять, что происходит.
Единственное сомнение, которое у меня есть, касается того, как я устанавливаю текст метки: может ли это быть проблемой? Почему это происходит?

1 Ответ

4 голосов
/ 16 июля 2011

Кажется, проблема в вашем dealloc методе:

[super dealloc]

должен быть последним вызовом в вашем dealloc методе, чтобы сохранить объект "живым", пока он освобождается.

...