实现heightForRowAtIndexPath

时间:2014-10-18 18:50:55

标签: ios uitableview

我有以下代码:

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


    if (indexPath.row == 10) {
        tableView:heightForRowAtIndexPath // make the last row height = 100;
    }

    return cell;

1 个答案:

答案 0 :(得分:0)

你是说这个?:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    if (indexPath.row == 10) return 100.0;
    return 44.0;
}