gpt4 book ai didi

ios - 当 View Controller 显示时获取 firebase 中的子项计数

转载 作者:行者123 更新时间:2023-11-30 12:00:48 25 4
gpt4 key购买 nike

我有一个 Collection View ,其中包含匹配单元格列表和用于添加新匹配的按钮。我希望每个匹配项具有相同数量的单元格(即:10 个匹配项,10 个单元格)。我想要每次 View 出现时的列表。

var countOfMatches = [DataSnapshot]() 
viewWillAppear {
ref.child("matches").observe(.childAdded, with: { (snapshot) in

self.countOfMatches = [DataSnapshot]()

for item in snapshot.children {
self.countOfMatches.append(item as! DataSnapshot)
}

})}

在 Collection View 中

return countOfMatches.count

为什么我的单元格没有显示?我可以看到 Firebase DB 中/matches 下创建的结果,但看不到单元格

最佳答案

您应该使用.value而不是.childAdded

您还应该重新加载 tableView.reloadData() 方法。

关于ios - 当 View Controller 显示时获取 firebase 中的子项计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47267721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com