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

ios - 如何使用自动布局获得 iOS 表格 View 最后正确的内容大小


                                            <p><p>我有一个用于自动布局的 tableview <code>UITableViewAutomaticDimension</code>,并且在 tableview 单元格配置和重新加载后,我获得了 tableview 内容大小以使 tableview 高度作为它的内容高度,这个高度似乎不正确按 <code>estimatedRowHeight</code> 计算。我知道我可以使用 kvo 获得最后一个正确的高度来观察 tableview 内容大小,但我不知道哪个是最后一个正确的高度,因为我只想在内容大小正确时做一次。我该怎么做?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要添加一个委托(delegate)方法,例如</p>

<pre><code>-(CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath
{return UITableViewAutomaticDimension;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(nonnull NSIndexPath *)indexPath
{
    return UITableViewAutomaticDimension;

}
</code></pre>

<p>在此之前,您应该在原型(prototype)单元格中放置的内容上固定 4 个面。</p>

<p>现在您得到了每个单元格的确切行高。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用自动布局获得 iOS 表格 View 最后正确的内容大小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33092808/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33092808/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用自动布局获得 iOS 表格 View 最后正确的内容大小