如何解决如何获取所选行的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 举报,一经查实,本站将立刻删除。