自定义UITableViewCell高度

时间:2012-04-06 14:48:10

标签: iphone objective-c uitableview

我在Interface Builder的UITableView中编写了一些不同的自定义单元格,包括每个自定义单元格的自定义高度,大于默认的44像素高。

然后我按照这样加载它们:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{    
    static NSString *CellIdentifier;

    for (int cell = 0; cell <= [tableCellsArray count]; cell++) 
    {
        if ([indexPath row] == cell) 
        {
            CellIdentifier = [tableCellsArray objectAtIndex:cell];
        }
    }

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) 
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...

    return cell;
}

它们每个都有一个自定义类,在上面的代码中,我循环遍历一个基本上保存相关单元标识符的数组。但是,在运行应用程序时,所有单元格都返回默认的44像素高度。

不使用委托方法返回我自己的单元格高度,是不是我错过了可能导致这种情况的东西?

感谢。

3 个答案:

答案 0 :(得分:6)

您可以在tableView的定义中更改所有单元格的高度,但要单独设置它们,您必须使用委托方法。令人困惑的是你可以在IB中设置它,但它仅用于显示目的而不是在运行时使用。

答案 1 :(得分:5)

您必须实现以下选择器并应用正确的逻辑,以便根据您的自定义单元格类型设置正确的高度。没有它,将使用默认高度44

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

    return YOUR_WANTED_CELL_HEIGHT;
}

不要以为你错过了其他任何东西。

答案 2 :(得分:0)

iOS 8 及以上版本中,我们可以使用动态表视图单元格高度

使用此功能 UITableviewCell 从内容中获取高度,我们无需编写 heightForRowAtIndexPath

我只需要在 viewDidLoad()

中做
tableView.estimatedRowHeight = 44.0;
tableView.rowHeight = UITableViewAutomaticDimension;

单元格中的设置约束:

enter image description here

结果:

enter image description here

在这里我们可以看到:当文字增加时,单元格大小也会自动增加,而不会写 heightForRowAtIndexPath