问题描述
我一直在阅读和研究,并尝试实施使用 Firestore 在 UITableview 中删除单元格的不同策略,但我似乎一直遇到相同的错误。
func tableView(_ tableView: UITableView,editactionsForRowAt indexPath: IndexPath,for orientation: SwipeActionsOrientation) -> [SwipeAction]? {
guard orientation == .right else { return nil }
let deleteAction = SwipeAction(style: .destructive,title: "Delete") { action,indexPath in
dispatchQueue.main.async {
self.documentsID.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath],with: .fade)
self.events.count - 1
self.tableView.reloadData()
}
self.db.document("school_users/\(self.user?.uid)/events/\(self.documentsID[indexPath.row]!.docID)").delete { (error) in
if let error = error {
print("There was an error trying to delete the documents: \(error)")
} else {
print("Successfully deleted the documents.")
}
}
}
deleteAction.image = UIImage(named: "delete-icon")
return [deleteAction]
}
这是我的函数,我已经更改了大约 20 次,但仍然得到相同的结果,有些帖子说要先从 tableview 中删除,有些人说先从 Firestore 中删除,我已经尝试了两种方法,但仍然失败。如果有人能很快纠正我,那就太好了。谢谢。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)