如何解决Swift:如何在 TableView 中显示来自 Firebase 的字符串数组?
我在 Firebase 数据库中有一组字符串(名称)。我是 swift 的新手,所以我不知道如何在表格视图中显示该数组。我需要在单个单元格中显示每个名称。
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
guestList.count
}
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "guestsCell",for: indexPath) as! GuestListOnTableTableViewCell
var guest: GuestModel
guest = guestList[indexPath.row]
cell.guestNameLabel.text = guest.guestName!
return cell
}
这是我的数据库:
我需要看起来像: 在单元格 0 -> 米尔斯 在单元格 1 -> 威廉 ....
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。