我要选择特定选定行的documentID。我不能只获得单个documentID,请帮助从选定行中查找特定ID。
for document in querySnapshot!.documents {
print("\(document.documentID) => \(document.data())")
// self.postArray.updateValue("\(document.data())", forKey: "\(document.documentID)")
if document.data().isEmpty == false
{
self.post.append("\(document.data()["postdata"] as! String)")
}
self.tableview.reloadData()
}
//I get whole id from this loop.and store data in post->array.
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
}