0
我想刪除swift3中單元格上的點擊查看的表格單元格。如何刪除swift3中點擊查看的UITableView部分
下面的函數被稱爲點擊查看和刪除方法用於刪除表格部分。但此解決方案不工作。
func remove(sender: UITapGestureRecognizer)
{
let indexView = sender.view
let index = indexView?.tag
self.removeAddresses(position: index!)
}
func remove(position: Int)
{
tableView.deleteSections(IndexSet(index: position,with. automatic))
tableView.reloadData()
}
要刪除全部或部分只有一行(小區)?也向我們展示了你的tableView的數據源方法。 –
好的..如果你想刪除一個單元格然後在你點擊方法只是寫爲[yourItemArray removeObjectAtIndex:itemIndex]; [yourTableView deleteRowsAtIndexPaths:@ [indexPathCreated] withRowAnimation:UITableViewRowAnimationAutomatic]; –
添加有問題的數據源方法 – KKRocks