OStack程序员社区-中国程序员成长平台

标题: ios - 如何在 UICollectionView 上动态实现 Sections? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 01:30
标题: ios - 如何在 UICollectionView 上动态实现 Sections?

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

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

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

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

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

提前致谢。



Best Answer-推荐答案


您可以过滤您的类别数组,然后将结果用作您的 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
}

关于ios - 如何在 UICollectionView 上动态实现 Sections?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44157592/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4