菜鸟教程小白 发表于 2022-12-13 01:30:00

ios - 如何在 UICollectionView 上动态实现 Sections?


                                            <p><p>你对其他开发者的表现如何?</p>

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

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

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

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

<p>提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以过滤您的类别数组,然后将结果用作您的 collectionView 的数据源函数的源。</p>

<p>示例代码:</p>

<pre><code>// replace these structs by your actual models
struct Event {
    let id: Int
}

struct Category {
    let events:
}

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

// after filtering out the categories without events, the resulting Array has only 2 elements
let filteredCategories = categories.filter { $0.events.count &gt; 0 }
</code></pre>

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

<pre><code>func numberOfSections(in collectionView: UICollectionView) -&gt; Int {
    return filteredCategories.count
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -&gt; Int {
    let category = filteredCategories
    return category.events.count
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 UICollectionView 上动态实现 Sections?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/44157592/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/44157592/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 UICollectionView 上动态实现 Sections?