从UITableViewCell隐藏UILabel不会调整contentView的大小

时间:2016-07-06 12:47:59

标签: ios objective-c uitableview uilabel autoresize

我正在尝试创建一个动态UITableView,其中cell可以在用户选择cell时展开/折叠。

- (void)setUpCell:(DynamicTableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
    cell.label.text = [self.dataSource objectAtIndex:indexPath.row];
    cell.secondLabel.text = [self.dataSource objectAtIndex:self.dataSource.count - indexPath.row - 1];
    if ([self.isVisible[indexPath.row] isEqual:@NO]) {
        cell.secondLabel.hidden = YES;
    } else {
        cell.secondLabel.hidden = NO;
    }
}


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.dataSource.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    DynamicTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    [self setUpCell:cell atIndexPath:indexPath];

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    DynamicTableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    if ([self.isVisible[indexPath.row] isEqual: @YES]) {
        self.isVisible[indexPath.row] = @NO;
        cell.secondLabel.hidden = YES;
    } else {
        self.isVisible[indexPath.row] = @YES;
        cell.secondLabel.hidden = NO;
    }
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    static DynamicTableViewCell *cell = nil;
    static dispatch_once_t onceToken;

    dispatch_once(&onceToken, ^{
        cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    });

    [self setUpCell:cell atIndexPath:indexPath];

    return [self calculateHeightForConfiguredSizingCell:cell];
}

- (CGFloat)calculateHeightForConfiguredSizingCell:(DynamicTableViewCell *)sizingCell {
    [sizingCell layoutIfNeeded];

    CGSize size = [sizingCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
    return size.height;
}

我分叉this项目并获得测试代码here

一旦单元格已经调整大小,它在选择单元格时不会改变,只会隐藏/显示单元格的内容。我尝试用UITableViewAutomaticDimension替换显式大小计算。还尝试重新加载单元格。似乎一旦计算出单元格大小,它就不会改变。

任何关于尝试什么的建议都将不胜感激!

1 个答案:

答案 0 :(得分:2)

在iOS开发中,如果将hidden属性设置为true,则视图永不会崩溃。

相反,你应该使用autolayout。假设您的视图有两个标签垂直堆叠在一起,将第一个标签固定到单元格contentView的顶部,给它一个高度约束,将第二个标签的顶部固定到第一个标签底部,pin第二个标签底部到单元格的contentView底部。设置第二个标签的高度,并将此约束保存在变量中,让我们称之为 secondLabelHeightConstraint ,现在您可以通过将 secondLabelHeightConstraint 的值设置为折叠并展开单元格0或你想要的任何价值。