即使删除特定单元格后 UITableView 单元格删除也不起作用

问题描述

我有一个表格视图单元格,如果我滑动,它应该删除特定的表格视图单元格,但图像没有被删除,但除图像之外的行中的内容正在删除

func tableView(_ tableView: UITableView,commit editingStyle: UITableViewCellEditingStyle,forRowAt indexPath: IndexPath) {
        if editingStyle == .delete {
            print("Deleted")
            
            name.remove(at: indexPath.row)
            miscellaneousText.remove(at: indexPath.row)
            amount.remove(at: indexPath.row)
            images.remove(at: indexPath.row)
            tableView.deleteRows(at: [indexPath],with: .fade)
            tableView.reloadRows(at: [indexPath],with: .automatic)
            
            
}
    }

解决方法

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

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

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