我试图在我的应用程序中显示用户ID,但是UID非常随机,并且每个ID旁边都是一个名称,是否可以同时显示节点名称及其值?
我的Firebase数据库
我想显示名称“ Andy”以及UID“ uLUnOelxABYl3lCtLz2Of5Yfnvc2”
我已对其进行设置,以便应用程序从我的Firebase接收值。
这是我的代码:
class TestViewController: UIViewController, UITableViewDelegate, UITableViewDataSource{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return list.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell")
cell?.textLabel?.text = list[indexPath.row]
return cell!
}
@IBOutlet weak var tableView: UITableView!
var ref: DatabaseReference!
var list = [String] ()
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
if FirebaseApp.app() == nil {
FirebaseApp.configure() }
ref = Database.database().reference()
ref?.child("users").observe(.childAdded, with: { (snapshot) in
let list1 = snapshot.value as? String
if let actualList = list1 {
self.list.append(actualList)
self.tableView.reloadData()
}
}
)
}
}
这就是我得到的。但是我想显示的是名称列表,这些名称旁边是这些值,例如:(photoshop) results
答案 0 :(得分:0)
关于documentation,FIRDataSnapshot具有属性key,所以我认为您可以将其用于与值进行匹配,例如:
/// e.g. use dictionary instead of Array
//var list = [String] ()
var list = [AnyHashable: String]()
...
ref?.child("users").observe(.childAdded, with: { (snapshot) in
let key = snapshot.key as? Hashable
let value = snapshot.value as? String
if let actualValue = value, let actualKey = key {
self.list[key] = actualValue
self.tableView.reloadData()
}
}