• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - UICollectionView 不重用单元格

[复制链接]
菜鸟教程小白 发表于 2022-12-13 16:12:08 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试使用 UICollectionView 模仿 UITableView 布局。

layout.itemSize = CGSizeMake(CGRectGetWidth(self.view.bounds), 44.0f);

我注册了可重用单元类。

[self.collectionView registerClass:[SampleCell class]
            forCellWithReuseIdentifier:NSStringFromClass([SampleCell class])];

注意:SampleClass 只是 UICollectionViewCell 的子类,不包含任何内容。

并符合数据源:

- (NSInteger)numberOfSectionsInCollectionViewUICollectionView *)collectionView
{
    return 1;
}

- (NSInteger)collectionViewUICollectionView *)collectionView numberOfItemsInSectionNSInteger)section
{
    return 28;
}

- (UICollectionViewCell *)collectionViewUICollectionView *)collectionView cellForItemAtIndexPathNSIndexPath *)indexPath
{
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:NSStringFromClass([SampleCell class])
                                                                           forIndexPath:indexPath];

    return cell;
}

我发现 SampleCell 没有被重用。为了验证它,我们可以简单地在 UICollectionView 中记录 subview 的数量。

- (void)scrollViewDidScrollUIScrollView *)scrollView
{
    NSLog(@"number of subviews in collection view is: %li", (long)self.collectionView.subviews.count);
}

滚动后,我得到了这个日志:

number of subviews in collection view is: 30

number of subviews in collection view is: 30

number of subviews in collection view is: 30

number of subviews in collection view is: 30

请注意,有 30 个 subview (其中 2 个是 ScrollView 指示器)。

这意味着所有 28 个项目都会显示,而不会从 superview 中删除不可见的单元格。为什么会这样?

为了方便您,我在 Github 上提供了一个示例项目。 https://github.com/edwardanthony/UICollectionViewBug

更新:

我还使用内存图层次结构调试器检查了内存分配,它被分配了 28 次。



Best Answer-推荐答案


我确实在工作,只是由于更积极的缓存而在内存中保留了更多。如果您尝试将项目数从 28 更改为 100,您会看到滚动时它保持在 33 个 subview 。

尝试将以下代码添加到您的 SampleCell 类中,您会看到它被调用,但可能与您期望的不完全一样。

- (void)prepareForReuse {
    [super prepareForReuse];

    NSLog(@"prepareForReuse called");
}

UICollectionView 具有比 UITableView 更高级的缓存方案(或至少与以前一样),这就是您看到自己所做的事情的原因。根据文档,它说 默认情况下启用单元格预取:

UICollectionView provides two prefetching techniques you can use to improve responsiveness:

  • Cell prefetching prepares cells in advance of the time they are required. When a collection view requires a large number of cells simultaneously—for example, a new row of cells in grid layout—the cells are requested earlier than the time required for display. Cell rendering is therefore spread across multiple layout passes, resulting in a smoother scrolling experience. Cell prefetching is enabled by default.

  • Data prefetching provides a mechanism whereby you are notified of the data requirements of a collection view in advance of the requests for cells. This is useful if the content of your cells relies on an expensive data loading process, such as a network request. Assign an object that conforms to the UICollectionViewDataSourcePrefetching protocol to the prefetchDataSource property to receive notifications of when to prefetch data for cells.

  • 您可以通过将此行添加到示例中的 setupCollectionView 函数来关闭单元格预取:

    self.collectionView.prefetchingEnabled = NO;
    

    这样做将使您的示例按预期工作。在我的情况下, subview 计数将下降到 18。

    关于ios - UICollectionView 不重用单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56962221/

    回复

    使用道具 举报

    懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    关注0

    粉丝2

    帖子830918

    发布主题
    阅读排行 更多
    广告位

    扫描微信二维码

    查看手机版网站

    随时了解更新最新资讯

    139-2527-9053

    在线客服(服务时间 9:00~18:00)

    在线QQ客服
    地址:深圳市南山区西丽大学城创智工业园
    电邮:jeky_zhao#qq.com
    移动电话:139-2527-9053

    Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap