gpt4 book ai didi

swift - 使用存储在 Firebase 数据库中的数据填充 UITableView

转载 作者:行者123 更新时间:2023-11-28 12:43:09 26 4
gpt4 key购买 nike

我的 iPhone 应用程序中有一个 UITableVIew,它使用数组填充每个单元格,但问题是如何使用从 firebase 数据库检索到的值填充数组:

func retData(){
rootRef.child("users").child("Test").observeEventType(.Value){
(snap: FIRDataSnapshot) in
}
}

var no1 = ["3","6","3","4","5","20","34","34"]

表格代码:

  func tableView(tableView: UITableView, cellForRowAtIndexPath     
indexPath: NSIndexPath) -> UITableViewCell {

let cell1 = self.h_table.dequeueReusableCellWithIdentifier("cell1",
forIndexPath: indexPath) as! Hole_Cell

cell1.s_label.text = usersArray[indexPath.row]

Firebase 数据结构:

 --Users
--Test: 1
--Test1: 2
--Test2: 3
--Test4: 4

最佳答案

试试这个:

var usersArray: [String]?

func retData() {
rootRef.child("users").observeEventType(.Value, withBlock: { snapshot in


usersArray = [String]()
for user in snapshot.allObjects as! [FIRDataSnapshot] {
let userString = user.value as? String
usersArray?.append(userString!)
}

})
}

***编辑试试这个:

var usersArray = [String]()

func retData() {
rootRef.child("users").observeEventType(.Value, withBlock: { snapshot in

let usersDict = snapshot.value as! [String:String]
self.usersArray= Array(usersDict.values)
self.tableView.reloadData()
}

})
}

*** 再次编辑:在闭包中添加此内容以说明用户何时没有数据。

        if let _ = snapshot.value as? NSNull {
return
} else {
let usersDict = snapshot.value as! [String:String]
self.usersArray= Array(usersDict.values)
self.tableView.reloadData()
}

关于swift - 使用存储在 Firebase 数据库中的数据填充 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38897465/

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