菜鸟教程小白 发表于 2022-12-13 10:16:24

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


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

<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    CategorieCell *customCell = (CategorieCell *);

    return ...
}
</code></pre>

<p>当我运行应用程序时,它崩溃了,但没有提供错误详细信息。问题出在我正在创建的新 customCell 上。还有其他方法可以访问 <code>customCell.m</code> 对象吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>关于crash,请注意你使用的是cellForRowAtIndexPath:这是你必须实现的UITableViewDatasource中的一个方法,这个方法默认调用heightForRowAtIndexPath,所以它会变成递归的</p>

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

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

<pre><code>(CategorieCell*) categorieCellForIndex:(NSIndex)index selected:(BOOL)selected{
...
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 访问 heightForRowAtIndexPath 中的自定义单元格属性,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28355066/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28355066/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 访问 heightForRowAtIndexPath 中的自定义单元格属性