Swift:始终从Firebase

时间:2018-03-14 11:14:11

标签: swift firebase dictionary firebase-realtime-database

我的目标是构建一个简单的应用程序:

  • 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显示最近添加的项目的namedesc值,来自数据库的first。任何想法都可以解决这个问题。

2 个答案:

答案 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

但如果不需要经常检查数据库更新,就会出现这种情况。