菜鸟教程小白 发表于 2022-12-13 13:40:45

ios - 获取 UICollectionView 部分的框架


                                            <p><p>如何在 <code>UICollectionView</code> 实例中获取整个部分的框架(<code>CGRect</code> 值)?
我知道 <code>UITableView</code> 有一个 <code>rectForSection:</code> 方法。我正在为 <code>UICollectionView</code> 寻找类似的东西。</p>

<p>我检查了 <code>UICollectionViewFlowLayout</code> 的文档,但找不到类似 <code>rectForSection:</code> 的任何内容。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>到collectionView添加分类</p>

<pre><code>@implementation UICollectionView (BMRect)

- (CGRect)bm_rectForSection:(NSInteger)section {
    NSInteger sectionNum = ;
    if (sectionNum &lt;= 0) {
      return CGRectZero;
    } else {
      CGRect firstRect = ];
      CGRect lastRect = ];
      return CGRectMake(0, CGRectGetMinY(firstRect), CGRectGetWidth(self.frame), CGRectGetMaxY(lastRect) - CGRectGetMidY(firstRect));
    }
}

- (CGRect)bm_rectForRowAtIndexPath:(NSIndexPath *)indexPath {
    return .frame;
}

@end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 获取 UICollectionView 部分的框架,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37616326/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37616326/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 获取 UICollectionView 部分的框架