Answer the question
In order to leave comments, you need to log in
How to retrieve data from firebase?
Plz tell me how to display data from the database in firebase? how to display information of each id?
There is such data:
id was generated using NSUUID().uuidString.lowercased()
ref.database.reference().child("game").child("футбол")
Answer the question
In order to leave comments, you need to log in
FIRDatabase.database().reference().child("game").child("Футбол").observeSingleEvent(of: .value, with: { (snapshot) in
if let dictionary = snapshot.value as? [String: AnyObject] {
for index in 0..<dictionary.count {
let currentKey = dictionary.keys.sorted()[index] // ID
let currentGame = dictionary[currentKey]
let adress= currentGame?["address"] as! String // Address
// Точно так же остальные поля можно достать
}
}
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question