如何在 UICollectionView 上动态实现 Sections?

Posted

技术标签:

【中文标题】如何在 UICollectionView 上动态实现 Sections?【英文标题】:How to implement Sections dynamically on UICollectionView? 【发布时间】:2017-05-24 11:50:35 【问题描述】:

你对其他开发者的表现如何?

我对 ios 开发还比较陌生,并且仍在努力实现我在其他语言中相对容易做的事情。

我正在构建一个事件应用程序。在我的应用程序上,用户可以选择每次运行应用程序时希望看到的事件类别。 有时根据[日期]等某些过滤器,某些类别可能没有结果要显示。例如:他选择了 A、D、F、G 和 M 类别。但今天,只有 D、F 和 M 满足条件,即有要显示的事件。

因此,用户首选项提供了一个类别(部分)数组。仅当每个类别的事件数组(部分中的项目)至少有一个项目时,才应显示每个类别。 问题是,在我的 UICollectionView 中,我想根据上面的实现 numberOfSections 和 numberOfItemsInSection 方法,带有页眉标题、页脚等。

在心理上,我可以通过必要的逻辑来实现这一点,例如,仅考虑那些至少包含一项的类别来返回计数。但是我很难将它翻译成 swift 代码。 我应该如何处理它?有人可以分享一个实现它的代码 sn-p 吗?

提前致谢。

【问题讨论】:

How do I add a section title in UICollectionView?的可能重复 【参考方案1】:

您可以过滤您的类别数组,然后将结果用作您的 collectionView 的数据源函数的源。

示例代码:

// replace these structs by your actual models
struct Event 
    let id: Int


struct Category 
    let events: [Event]


// this is your Array of categories with 3 elements
let categories = [Category(events: [Event(id: 0)]), Category(events: [Event(id: 1)]), Category(events: [])]

// after filtering out the categories without events, the resulting Array has only 2 elements
let filteredCategories = categories.filter  $0.events.count > 0 

然后你可以像这样实现collectionView的数据源函数:

func numberOfSections(in collectionView: UICollectionView) -> Int 
    return filteredCategories.count


func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int 
    let category = filteredCategories[section]
    return category.events.count

【讨论】:

以上是关于如何在 UICollectionView 上动态实现 Sections?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 UICollectionview 中返回动态 numberOfItemsInSection

如何在具有动态大小的单元格的 UICollectionViewFlowLayout 子类上正确设置节插入

如何在 UICollectionView 中动态调整标题视图的大小?

如何快速在uicollectionview中动态访问单元格属性

如何在 UICollectionView 的部分标题中动态添加标签和按钮?

在UICollectionView上动态设置布局会导致无法解释的contentOffset更改