gpt4 book ai didi

ios - 在 heightForRowAtIndexPath 中访问自定义单元格属性

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:41:25 24 4
gpt4 key购买 nike

我有一个自定义的 UITableViewCell。我想访问单元格属性,即 UILabel 等。我尝试插入以下代码:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
CategorieCell *customCell = (CategorieCell *)[tableView cellForRowAtIndexPath:indexPath];

return ...
}

当我运行该应用程序时,它崩溃了,但没有提供错误详细信息。问题出在我正在创建的新 customCell 上。还有其他方法可以访问 customCell.m 对象吗?

最佳答案

关于崩溃,请注意您正在使用 cellForRowAtIndexPath:这是您必须实现的 UITableViewDatasource 中的一个方法,该方法默认调用 heightForRowAtIndexPath,因此它将成为一个递归

我假设您希望在此方法中使用您的自定义单元格,以便从中获取高度。实现此目的的最佳方法是在 CategorieCell 上编写一个类方法,为您提供具有特定数据的单元格的高度。

其他选项是使用代码提取方法以获取 uitableviewcell,例如

(CategorieCell*) categorieCellForIndex:(NSIndex)index selected:(BOOL)selected{
...
}

关于ios - 在 heightForRowAtIndexPath 中访问自定义单元格属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28355066/

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