我正在使用来自Firebase的每个帖子的评论数据在我的帖子中添加评论部分。我一直在阅读Firebase的教程,有关StackOverflow的问题的答案和Youtube教程,但是我仍然遇到问题。我正在使用FirebaseUI开源工具包。这是我的Firebase JSON:
"posts" : {
"-LhjroYuwrmhENr78QEQ" : {
"comments" : {
"-LhjrqSlNDl49q-f2IvJ" : "How is it going there?",
"-Lhjry5Q02nk3UDuwl1V" : "I would like some help with Firebase Apps",
"-LhjrzadaywBb2p2S63D" : "Do you think you can help me?"
},
"reports" : 0,
"text" : "Ryan Here",
"timestamp" : 1560950032828,
"title" : "Hey",
"userID" : "nyRBXSyyDhc1Qkypou0Iz0iMsyr1"
},
"comments" : {
"-LhjrqSlNDl49q-f2IvK" : {
"reports" : 0,
"timestamp" : 1560950040707,
"userID" : "nyRBXSyyDhc1Qkypou0Iz0iMsyr1"
},
"-Lhjry5Rr-DVxGdwgAhn" : {
"reports" : 0,
"timestamp" : 1560950071986,
"userID" : "nyRBXSyyDhc1Qkypou0Iz0iMsyr1"
},
"-LhjrzadaywBb2p2S63E" : {
"reports" : 0,
"timestamp" : 1560950078142,
"userID" : "nyRBXSyyDhc1Qkypou0Iz0iMsyr1"
}
}
}
}
我想用每个注释作为填充带有注释文本的标签的唯一单元格填充tableView“ commentsTable”。我在情节提要中制作了一个带有标签的原型单元,然后尝试使用以下代码发布文本:
var post: Post?
override func viewDidLoad() {
super.viewDidLoad()
print(delegate!)
ref.child("posts").child("comments").observeSingleEvent(of: .value, with: {DataSnapshot in self.commentsTable})
newCommentLabel.delegate = self
let firebaseRef = Database.database().reference().child("posts").child("comments")
let query = firebaseRef.queryOrderedByKey() /*or a more sophisticated query of your choice*/
let dataSource = self.commentsTable.bind(to: query, populateCell: { (tableView: UITableView, indexPath: IndexPath, snapshot: DataSnapshot) -> UITableViewCell in
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
let value = snapshot.value as! NSDictionary
self.query?.observe(.value, with: { snapshot in
})
cell.textLabel?.text = firebaseRef.text
return cell
})
}
此刻,我在“ let dataSource = ...”行出现错误,提示“ UITableView类型的值?”。没有成员“ bind””。我不确定如何解决此错误。我的文字似乎与Firebase文档相同。
我也不确定如何在tableView中显示所需的信息。到目前为止,这是我尝试过的:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = UITableViewCell()
let label = UILabel(frame: CGRect(x:0, y:0, width:200, height:50))
cell.addSubview(label)
return cell
}
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return 50
}
private func setMain() {
guard let post = self.post else {
return
}
我发现很难满足提出评论的所有必要条件。在没有足够解释的情况下,教程和文档的必要输入量似乎有些模糊或不知所措。我希望这里的某人能够帮助我简化流程。谢谢您的帮助!
答案 0 :(得分:1)
我相信您想先下载所有评论。将注释存储在数组或字典中。这是您的数据源。您绝对不希望在ViewDidLoad中创建uitableview单元。
然后,当您调用cellForRowAtIndexPath时,请使用注释的数据源(数组/ dict)填充您创建的自定义单元格的字段。
numberOfRowsInSection应该是数据源的大小/数量。