gpt4 book ai didi

ios - 从 Firebase 检索数据到 TableView

转载 作者:行者123 更新时间:2023-11-28 06:33:01 25 4
gpt4 key购买 nike

在一个 View 中,我的用户在输入字段中键入了一些文本,我将其保存为 ticket(此过程没有问题并已成功添加到我的数据库 ).

我希望所有这些 ticket 值都显示在 tableView 中,其中每个单元格都包含一个 ticket。我一直在玩,这是我能做到的,但仍然不够。

 import UIKit
import Firebase

class TestTableViewController: UITableViewController {

let cellNavn = "cellNavn"

var holes: [FIRDataSnapshot]! = []


let CoursesRef = FIRDatabase.database().reference().child("Ticketcontainer")


override func viewDidLoad() {
super.viewDidLoad()

CoursesRef.observeEventType(.ChildAdded, withBlock: { snapshot in
self.holes = snapshot.childSnapshotForPath("tickets").children.allObjects as! [FIRDataSnapshot]
})

navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Cancel", style: .Plain, target: self, action: #selector(handleCancel))

tableView.registerClass(UserCell.self, forCellReuseIdentifier: cellNavn)


}


func handleCancel() {
dismissViewControllerAnimated(true, completion: nil)
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 2
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier(cellNavn, forIndexPath: indexPath) as! UserCell
cell.textLabel?.text = self.holes[indexPath.row].value as? String

return cell

}

override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return 72
}

}

最佳答案

首先,在 numberOfRowsInSection 方法中,您需要返回数组的计数,而不是一些静态值。

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return holes.count
}

在闭包中初始化数组后,您需要重新加载 tableView

CoursesRef.observeEventType(.ChildAdded, withBlock: { snapshot in
self.holes = snapshot.childSnapshotForPath("tickets").children.allObjects as! [FIRDataSnapshot]
self.tableView.reloadData()
})

关于ios - 从 Firebase 检索数据到 TableView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39775232/

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