-5

可能重复:
定义一个特定表格单元格的高度

如何在表格视图中更改一个单元格的高度?我想在表格视图中更改一个单元格的高度,而不是第一次初始化,但单元格也已显示。

4

1 回答 1

1

您可以更改 tableview:hightOfRowAtIndexPath: 中单元格的高度。

例如:

- (CGFloat)tableView:(UITableView *)aTableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    CGFloat retVal =0.0f;

    if(indexPath.section==//the section you want )
    {
        if(indexPath.row==//the row you want)
        {
            retVal=10.0f;//the height you want.
        }
        else
            retVal=50.0f;
    }
    else 
        retVal=50.0f;

    return retVal;
}
于 2012-12-28T05:52:06.820 回答