gpt4 book ai didi

ios - 如何为 parent 和 child 分别创建表格 View 单元格高度?

转载 作者:行者123 更新时间:2023-11-29 10:22:26 24 4
gpt4 key购买 nike

我已经创建了两个不同的 tableviewcellsingle tableview,现在我已经为单独的 cells 设置了 separate heightstoryboard“行高”处。现在的问题是,每当我运行应用程序时,它不会改变两个高度相同。

最佳答案

你应该实现

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

并为父单元格和子单元格返回不同的高度。

示例实现:

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

CGFloat height = 0;

UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
if ([cell.reuseIdentifier isEqualToString:@"ParentCell"]) {
height = 100.0; //Parent Cell height
} else if ([cell.reuseIdentifier isEqualToString:@"ChildCell"]) {
height = 50.0; //Child Cell height
}

return height;
}

关于ios - 如何为 parent 和 child 分别创建表格 View 单元格高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34308982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com