菜鸟教程小白 发表于 2022-12-13 01:51:57

ios - 使单个单元格重叠


                                            <p><p>我已经搜索但找不到答案。 </p>

<p>有没有办法让一个特定的单元格与另一个单元格重叠,其余的单元格以默认布局布局。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的,这很容易实现。您可以使单元格内的 View 与其他单元格重叠。因此,只需向您的 UITableViewCell 添加一个与单元格边界重叠的 subview 。例如,您可以使用自动布局约束将它们定位在 View 之外,或者您只需将单元格的高度设置为低于其 subview 的高度。</p>

<p>然后您需要确保您的单元格 subview 可以显示在其边界之外。您需要为此设置 <em>clipsToBounds</em>:</p>

<pre><code> let cell = tableView.dequeueReusableCell(withIdentifier: &#34;OverlapCell&#34;)

cell?.contentView.clipsToBounds = false
cell?.clipsToBounds = false
</code></pre>

<p>同样重要的是设置 <a href="https://developer.apple.com/documentation/quartzcore/calayer/1410884-zposition" rel="noreferrer noopener nofollow">zPosition</a>您的单元格,以使其显示在所有其他单元格之上。</p>

<pre><code>cell?.layer.zPosition = 10
</code></pre>

<p>希望这会有所帮助。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使单个单元格重叠,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/44745240/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/44745240/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使单个单元格重叠