简体   繁体   English

如何在Swift的滑动操作中更改UITableviewCell背景颜色?

[英]How to change UITableviewCell background color on swipe action in Swift?

--------------------- Here is my code --------------------- ---------------------这是我的代码---------------------

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
    }

try this code 试试这个代码

@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
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM