答案 0 :(得分:0)
对于deleteCell
,您不需要IBAction
尝试以下解决方案
添加以下委托方法
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let delete = UITableViewRowAction(style: .destructive, title: "Delete") { (action, indexPath) in
// delete item at indexPath
}
let edit = UITableViewRowAction(style: .normal, title: "Edit") { (rowAction, indexPath) in
// edit item at indexpath
}
edit.backgroundColor = UIColor.black
delete.backgroundColor = UIColor.black
return [edit, delete]
}
答案 1 :(得分:0)
尝试以下解决方案
在子类awakeFromNib()
的{{1}}方法上:
UITableViewCell