菜鸟教程小白 发表于 2022-12-12 17:37:35

ios - UICollectionViewFlowLayout 中的自定义布局


                                            <p><p>我想在 Collection View 中有一个布局,每个单元格都有自定义大小。正因为如此,我希望细胞能够很好地组合在一起,如您在此处所见:</p>

<p> <img src="/image/hmGXc.png" alt="Well laid out images"/> </p>

<p>(第一个单元格位于顶部,左下角为 2 号,右下角为 3 号)。滚动方向是水平的(即从左到右)。</p>

<p>但是,当我为每个单元格实现自定义大小时,单元格不会填充空白,而是最终得到类似于此的布局:</p>

<p> <img src="/image/XtChb.png" alt="Wrong layout"/> </p>

<p>为了达到这个结果,我需要子类化 UICollectionViewFlowLayout 还是有办法组织单元格以尽可能多地占用空闲空间?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要通过继承 UICollectionViewLayout 来实现自己的布局。没那么复杂。网上有很多例子。</p>

<p>这是一个使用原始 Apple 示例的示例:<a href="http://markpospesel.wordpress.com/2012/10/25/fixing-circlelayout/" rel="noreferrer noopener nofollow">http://markpospesel.wordpress.com/2012/10/25/fixing-circlelayout/</a> </p>

<p>另一个看起来像你想要做的例子:<a href="https://github.com/chiahsien/CHTCollectionViewWaterfallLayout" rel="noreferrer noopener nofollow">https://github.com/chiahsien/CHTCollectionViewWaterfallLayout</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UICollectionViewFlowLayout 中的自定义布局,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20848809/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20848809/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UICollectionViewFlowLayout 中的自定义布局