问题描述
我在 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 (将#修改为@)