菜鸟教程小白 发表于 2022-12-13 09:50:03

ios - 表格 View (单元格)的底部被切断


                                            <p><p>我的<code>表格 View </code>中有更多内容,但是这个<strong>单元格被截断并且没有显示更多内容</strong>:</p>

<p> <img src="/image/MKNUC.png" alt="enter image description here"/> </p>

<p>...所以我不能再滚动了,即使有更多的内容。</p>

<p>如果我用手指向上拉,它会显示更多内容,但是当我将手指从单元格上移开时,它会回到上图中显示的状态。</p>

<p><em>我已经尝试确保在 AutoLayout 的 <code>Labels</code> 和 <code>Images</code> 中设置高度和宽度,因为我认为这可能是一个问题,但仍然没有没修好。</em></p>

<p>有什么想法吗?谢谢!</p>

<p><strong>更新 - Storyboard 中的表格 View 结构</strong>
<img src="/image/QWmrp.png" alt="enter image description here"/> </p>

<pre><code>- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    id model = self.model;

    if (]) {
      return 520;
    }
    else {
      return tableView.rowHeight; // return the default height
    }
}
</code></pre>

<p> <img src="/image/Vl40z.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我也遇到了这个问题,但我的只是切断了一个单元格。我解决了它,并认为我会在这里发布它,因为它可能会在未来帮助其他人</p>

<p>我使用的是从 Nib 创建的自定义单元格。我的一些单元格可能会改变高度,所以我也在使用这个:</p>

<pre><code>tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 61
</code></pre>

<p>我发现问题在于我在 View 上设置了顶部、左侧、右侧和高度限制。我还需要设置底部约束,否则我的行高会比应有的小得多。</p>

<p>因此,如果您遇到此问题,请检查您的行高是否不小于它们包含的 View 。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 表格 View (单元格)的底部被切断,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26877792/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26877792/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 表格 View (单元格)的底部被切断