我的问题是:该表位于一个ViewController上。可以从CoreData填充它。单击单元格右上角的按钮时,需要实现单元格删除。
我知道如何在滑动时实施删除,但事实并非如此。按下时很有必要。我正在寻找类似的问题,但没有找到任何东西,如果重复,我深表歉意。我该怎么办?
答案 0 :(得分:0)
我希望这会对您有所帮助。 您需要为按钮点击事件编写以下代码。
tableView.beginUpdates()
yourDataArray.remove(at: IndexPath.row)
tableView.deleteRows(at: [IndexPath], with: .none)
tableView.endUpdates()