仅为三个自定义单元格中的一个设置表格视图单元格高度

时间:2014-11-09 23:56:19

标签: ios objective-c uitableview heightforrowatindexpath

我有三个自定义TableViewCells。我在代码中设置heightForRowAtIndexPath需要三个单元格中的一个,因为我无法在Storyboard中使用AutoLayout。

有没有办法为特定的自定义heightForRowAtIndexPath设置TableViewCell

我的heightForRowAtIndexPath

- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    id model = self.combinedModel[indexPath.row];

    // Custom Table View Cell Two
    if ([model isKindOfClass:[Data self]]) {

        return 500;
    }
    // Custom Table View Cell One and Three
    else {
        // Not sure what to put here, but need to put something without setting a height
    }
}

2 个答案:

答案 0 :(得分:2)

我在代码中执行以下操作:

- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    id model = self.combinedModel[indexPath.row];

    // Custom Table View Cell Two
    if ([model isKindOfClass:[Data self]]) {
        return 500;
    } else {
        return tableView.rowHeight; // return the default height
    }
}

答案 1 :(得分:1)

"放置一些东西而不设置高度"没有意义。您需要为每个单元格提供表格视图的高度。为它提供您用于其他单元格的默认高度。