heightForRowAtIndexPath вылетает - PullRequest
       5

heightForRowAtIndexPath вылетает

1 голос
/ 21 февраля 2011

У меня есть следующий код:

- (CGFloat)tableView:(UITableView *) tableView heightForRowAtIndexPath:(NSIndexPath *) indexPath{
    TestCell* cell = (ConvoreCell *) [tableView cellForRowAtIndexPath:indexPath];
    CGSize textSize = [[cell text] sizeWithFont:[UIFont systemFontOfSize:14] constrainedToSize:CGSizeMake([tableView frame].size.width - 20, 500)];
    return 80;
}

Сбой на cellForRowAtIndexPath, почему это так? Бревно мне ничего не говорит. Вот мой метод cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"ConvoreCell";
    AsyncImageView *asyncImageView = nil;
    TestCell * cell = (TestCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"TestCell" owner:nil options:nil];
        for (id currentObject in topLevelObjects){
            if ([currentObject isKindOfClass:[UITableViewCell class]]){
                cell = (ConvoreCell *) currentObject;
                break;
            }
        }
        asyncImageView = [[[AsyncImageView alloc] init] autorelease];
        asyncImageView.imageview = cell.icon;
    }
    else {
        asyncImageView = (AsyncImageView *) [cell.contentView viewWithTag:ASYNC_IMAGE_TAG];
    }

    NSMutableDictionary *cellValue = [results objectAtIndex:indexPath.row];

    NSString *picURL = [[cellValue objectForKey:@"user"] objectForKey:@"img"];
    if ([picURL isEqualToString:@"https://secure.gravatar.com/avatar/1f043010eb1652b3fab3678167dc0487/?default=https%3A%2F%2Fconvore.com%2Fmedia%2Fimages%2Feric.png&s=80"])
        picURL = @"https://test.com/media/images/eric.png";

    [asyncImageView loadImageFromURL:[NSURL URLWithString:picURL]];

    cell.title.text = [cellValue objectForKey:@"message"];
    cell.info.text = [NSString stringWithFormat:@"%@ %@ days ago", [[cellValue objectForKey:@"user"] objectForKey:@"username"], [cellValue objectForKey:@"date_created"] ];

    return cell;
}

Все, что я хочу сделать, это изменить высоту ячейки в соответствии с cell.title.text ....

1 Ответ

3 голосов
/ 21 февраля 2011

Неправильно вызывать cellForRowAtIndexPath: вручную. Вы должны хранить эти строки отдельно в массиве и получать их оттуда.

Практическое правило: не вызывайте обратные вызовы фреймворка вручную.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...