菜鸟教程小白 发表于 2022-12-13 09:56:34

ios - 我如何获得 UICollectionView 的 rect


                                            <p><p>我想在 UICollectionView 中定位节标题的框架。我对 UITableView 也有类似的情况,为此,我可以通过以下方式获得它的正确性:</p>

<pre><code> CGRect rect = ;
</code></pre>

<p>有没有办法在 UICollectionView 中获得相同的结果?谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>对不起,伙计们。这实际上很容易。</p>

<pre><code> NSIndexPath *indexPath = ;
UICollectionViewLayoutAttributes *attributes = ;
CGRect rect = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我如何获得 UICollectionView 的 rect,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27011572/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27011572/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我如何获得 UICollectionView 的 rect