gpt4 book ai didi

ios - 对来自 firebase 的 tableView 数据进行排序

转载 作者:行者123 更新时间:2023-11-28 14:13:24 24 4
gpt4 key购买 nike

我希望来自 firebase 的数据必须是反向的,最后的数据必须是向上的。

我检索数据的代码:

override func viewDidLoad() {
super.viewDidLoad()
isRead = false
tableView.delegate = self
tableView.dataSource = self

ref = Database.database().reference()
databaseHandle = ref?.child("Child").observe(.childAdded, with: { (snapshot) in
var post = snapshot.value as? String
if let actualPost = post{
self.postData.append(actualPost)
self.tableView.reloadData()
}
})

}

photo

最佳答案

代替

self.postData.append(actualPost)

使用

self.postData.insert(actualPost,at:0)

BTW 直接使用 if let actualPost = snapshot.value as?字符串{}

关于ios - 对来自 firebase 的 tableView 数据进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52320012/

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