我的目标是构建一个简单的应用程序:
UITableViewCell
获取项目Firebase
。ViewController
执行segue。ViewController
。到目前为止我已完成的工作:
UITableViewCell
。ViewController
。 问题是,无论我点击哪个单元格,我的ViewController
始终会显示Firebase
数据库中最近添加的项目。让我提供我的数据库结构和我的Swift代码:
Firebase结构:
simple-app:
└── upcoming:
└── fourth:
└── desc: "description for the fourth item"
└── name: "fourth item"
└── third:
└── desc: "description for the third item"
└── name: "third item"
└── second:
└── desc: "description for the second item"
└── name: "second item"
└── first:
└── desc: "description for the first item"
└── name: "first item"
Swift代码:
import Foundation
import UIKit
import Firebase
class Upcoming: UITableViewController{
@IBOutlet weak var upcomingItems: UITableView!
var itemName: String?
var itemDesc: String?
var ref: DatabaseReference!
var refHandle: UInt!
var itemList = [Item]()
let cellId = "cellId"
override func viewDidLoad() {
ref = Database.database().reference()
fetchItems()
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return itemList.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: .subtitle, reuseIdentifier: cellId)
itemName = itemList[indexPath.row].name
itemDesc = itemList[indexPath.row].desc
cell.textLabel?.text = itemName
return cell
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
performSegue(withIdentifier: "DetailedInfo", sender: self)
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "DetailedInfo" {
var vc = segue.destination as! DetailedInfo
vc.name = itemName
vc.desc = itemDesc
}
}
func fetchItems(){
refHandle = ref.child("upcoming").observe(.childAdded, with: {(snapshot) in
if let dictionary = snapshot.value as? [String: AnyObject]{
print(dictionary) // dictionary is as desired, no corruption
let item = Item()
item.setValuesForKeys(dictionary)
self.itemList.append(token)
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
})
}
}
我可以看到四个不同的单元格,根据需要有四个不同的名称,但无论哪个单元格被点击,下一个ViewController
显示最近添加的项目的name
和desc
值,来自数据库的first
。任何想法都可以解决这个问题。
答案 0 :(得分:3)
itemName和itemDesc将始终是最后一个单元格,因为您在cellForRow中编写它, 在didSelectRow中设置项目
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: .subtitle, reuseIdentifier: cellId)
cell.textLabel?.text = itemList[indexPath.row].name
return cell
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
itemName = itemList[indexPath.row].name
itemDesc = itemList[indexPath.row].desc
performSegue(withIdentifier: "DetailedInfo", sender: self)
}
答案 1 :(得分:0)
尝试使用此方法
refHandle = ref.child("upcoming").observeSingleEvent(of: .value, with: { (snapshot) in
但如果不需要经常检查数据库更新,就会出现这种情况。