菜鸟教程小白 发表于 2022-12-12 10:22:22

ios - UICollectionViewFlowLayout 忽略不同高度项目的部分插图 - 错误还是预期?


                                            <p><p>我正在使用 UICollectionViewFlowLayout 并想应用如下所示的部分插图。我所有的元素都有相同的宽度但不同的高度。当同一部分中的项目具有相同的高度时,插入有效,但当它们在同一部分中的高度不同时无效。这是此布局的预期行为吗?我需要子类化并制作一个自定义的,还是缺少一些东西?</p>

<pre><code>- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {

    UIEdgeInsets insets = UIEdgeInsetsZero;

    CGFloat big = 30;
    CGFloat small = 10;

    if (section &lt; 5) {
      insets = UIEdgeInsetsMake(0, big, 0, small);
    } else {
      insets = UIEdgeInsetsMake(0, small, 0, big);
    }

    return insets;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>由于某种原因,如果每行有一个项目,UICollectionViewFlowLayout 具有将单元格居中的行为。然后它会忽略部分插图。</p>

<p>您可以通过重写 UICollectionViewFlowLayout 并更改以下两个方法来解决此问题:</p>

<pre><code>- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewLayoutAttributes *attribute = ;

    ;

    return attribute;
}
</code></pre>

<p>和</p>

<pre><code>- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
    NSArray *results = ;

    for (UICollectionViewLayoutAttributes *attribute in results)
    {
      ;
    }

    return results;
}
</code></pre>

<p>魔法:</p>

<pre><code>- (void)fixLayoutAttributeInsets:(UICollectionViewLayoutAttributes *)attribute
{
    if ()
    { //nil means it is a cell, we do not want to change the headers/footers, etc
      return;
    }

    //Get the correct section insets
    UIEdgeInsets sectionInsets;

    if ([[ delegate] respondsToSelector:@selector(collectionView:layout:insetForSectionAtIndex:)])
    {
      sectionInsets = [(id&lt;UICollectionViewDelegateFlowLayout&gt;)[ delegate] collectionView: layout:self insetForSectionAtIndex:[ section]];
    }
    else
    {
      sectionInsets = ;
    }

    //Adjust the x position of the view, the size should be correct or else do more stuff here
    CGRect frame = ;

    frame.origin.x = sectionInsets.left;

    ;
}
</code></pre>

<p>如果您在单行上有多个单元格,则此解决方案不起作用(并且不需要),因此您应该使用 bool 值或您喜欢的任何内容检查这种情况...这只是此场景的一个简单示例</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UICollectionViewFlowLayout 忽略不同高度项目的部分插图 - 错误还是预期?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24165816/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24165816/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UICollectionViewFlowLayout 忽略不同高度项目的部分插图 - 错误还是预期?