---------------------这是我的代码------------------- -
func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let important = importantAction(at: indexPath)
//let delete = deleteAction(at: indexPath)
return UISwipeActionsConfiguration(actions: [important])
}
@available(iOS 11.0, *)
func importantAction(at indexPath: IndexPath) -> UIContextualAction
{
let action = UIContextualAction(style: .normal, title: nil) { (action, view, completion) in
completion(true)
}
action.image = #imageLiteral(resourceName: "checked_wht")
action.backgroundColor = UIColor.green
return action
}
答案 0 :(得分:0)
试试这段代码
@available(iOS 11.0, *)
func importantAction(at indexPath: IndexPath) -> UIContextualAction
{
let action = UIContextualAction(style: .normal, title: nil) { (action, view, completion) in
completion(true)
let indexPath = IndexPath(item: indexPath.row, section: 0)
self.tableView.reloadRows(at: [indexPath], with: .top)
}
let cell:UITableViewCell = (tableView.cellForRow(at: IndexPath(row: indexPath.row, section: 0)))!
cell.backgroundColor = UIColor.red
action.backgroundColor = UIColor.green
return action
}