3

動的な高さを持つセルを使用してテーブル ビューを作成しようとしていますが、すべて正常に動作しているように見えましたが、この奇妙な問題に気付きました。リストを下にスクロールして上に戻ると、一部のセルがコンテンツを完全に描画していないように見えます。

正しい内容: https://www.dropbox.com/s/eqsx4p6dmsofrko/Screen%20Shot%202012-05-03%20at%2010.30.11%20AM.png

コンテンツカット: https://www.dropbox.com/s/qqelftkc5jzetk5/Screen%20Shot%202012-05-03%20at%2010.30.19%20AM.png

ここですべてのセルを作成します。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"ItemCell";
    ItemCell *cell = (ItemCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    Item *item = [self.activity objectAtIndex:indexPath.row];
    cell.projectLabel.text = item.project;
    cell.descriptionLabel.text = item.description;
    cell.timeLabel.text = item.time;
    cell.timeAgoLabel.text = item.timeAgo;
    //cell.avatar = [UIImageView item.avatar];

    cell.descriptionLabel.numberOfLines = 0;
    [cell.descriptionLabel sizeToFit];

    // remove the right arrow
    cell.accessoryType = UITableViewCellAccessoryNone;

    //[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation: UITableViewRowAnimationNone];

    return cell;
}

これを使用して、セルの高さを変更します。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"ItemCell";
    ItemCell *cell = (ItemCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    CGSize descriptionHeight = [cell.descriptionLabel.text sizeWithFont:[UIFont boldSystemFontOfSize:18.0f] constrainedToSize:CGSizeMake(265.0f, CGFLOAT_MAX) lineBreakMode:UILineBreakModeWordWrap];

    NSInteger height = cell.projectLabel.frame.origin.y + cell.projectLabel.frame.size.height;
    height += descriptionHeight.height + 30;

    NSLog(@"height: %d", height);

    return height;
}
4

3 に答える 3

0

解決策は、キューから取り出されたセルを使用する代わりに、データフィードからテキストを取得することでした。

于 2012-05-04T03:15:05.807 に答える
0

テーブル ビューを再描画するために [self setNeedsDisplay] を呼び出してみましたか?

于 2012-05-03T02:42:12.083 に答える
0

このコードが機能する理由はわかりませんが、tableView:cellForRowAtIndexPath:メソッドでセルを作成することはありません。あなたの質問ではそれが省略されていると思います。

[cell.descriptionLabel sizeToFit];行をあなたtableView:cellForRowAtIndexPath:からこの行の上に移動します

CGSize descriptionHeight = [cell.descriptionLabel.text sizeWithFont:[UIFont boldSystemFontOfSize:18.0f] constrainedToSize:CGSizeMake(265.0f, CGFLOAT_MAX) lineBreakMode:UILineBreakModeWordWrap];

あなたのtableView:heightForRowAtIndexPath:

そして電話する

[cell setNeedsLayout];
[cell setNeedsDisplay];

その後。

于 2012-05-03T04:24:43.220 に答える