heightForRowAtIndexPath永远不会被称为iOS9

时间:2015-10-20 02:18:10

标签: ios uitableview heightforrowatindexpath

好吧我很确定这个方法一直在我的UITableViewController执行。我的方法中有print语句,如下所示:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    //455(PERFECT MIN HEIGHT) 475 is perfect spacing. 15.5 is the scalar for when descriptionLabel expands lines
    return 475;
    NSLog(@"ISSSS ITTT ONNNN???");

    if (currentDescriptionHeight == 16.0) {
        NSLog(@"OHHH so it triggered 1111");
        return 475;
    }else if (currentDescriptionHeight == 31.5){
        NSLog(@"OHHH so it triggered 2222");
        return 490.5;
    }else if (currentDescriptionHeight == 47){
        NSLog(@"OHHH so it triggered 3333");
        return 506;
    }

    //475 - 1 line description,
}

我已将方法标题复制到 .h 文件中,并正确设置了委派:

self.tableView.delegate = self;
self.tableView.dataSource = self;

在我的viewDidLoad:方法中。为什么我的heightForRowAtIndexPath根本没被调用?

2 个答案:

答案 0 :(得分:1)

您只需要将函数顶部的return语句移动到底部,或者将其作为当前if语句的一部分放在else中,因为return语句会立即结束函数,因此它下面的代码永远不会执行。

答案 1 :(得分:1)

试试这个

已编辑

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

CGFloat height = 475;
NSLog(@"ISSSS ITTT ONNNN???");

if (currentDescriptionHeight == 16.0) {
    NSLog(@"OHHH so it triggered 1111");
    height = 475;
}else if (currentDescriptionHeight == 31.5){
    NSLog(@"OHHH so it triggered 2222");
    height = 490.5;
}else if (currentDescriptionHeight == 47){
    NSLog(@"OHHH so it triggered 3333");
    height = 506;
}

return height;
}