如何获取所选行的textLabel并快速保存到firebase?

问题描述

我正在尝试获取我选择并保存到 Firebase 的行的 textLabel 的值。我希望当我一次选择多行时,存储到 Firebase 数据库。 这是我的代码

附言我是 Swift 新手。

 func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
        return guestList.count
    }
    
    func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "guestListCell",for: indexPath) as! GuestListToTableTableViewCell
        let guest: GuestModel
        guest = guestList[indexPath.row]
        cell.fullNameLabel.text = guest.guestName! + " " + guest.guestFamilyName!
        cell.checkedImageView.image = UIImage(named: "unChecked")
        return cell
        
    }
    
    func tableView(_ tableView: UITableView,didSelectRowAt indexPath: IndexPath) {
        tableTableView.deselectRow(at: indexPath,animated: true)
        indexArray.append(indexPath.row)
     
        guard let cell = tableView.cellForRow(at: indexPath) as? GuestListToTableTableViewCell else { return }
            let name: GuestModel
            name =  guestList[indexPath.row]
            print("\(String(describing: name.guestName))") }

这是我的嘉宾模特

class GuestModel {
    
    var guestName: String?
init(guestName: String?)
self.guestName = guestName } 

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)