これらの機能を追加し、必要に応じて変更するだけです。
override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
}
この
override func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let example1 = UITableViewRowAction(style: .normal, title: "example1") { (action: UITableViewRowAction!, indexPath: IndexPath!) -> Void in
// run your desired action
}
example1.backgroundColor = .white
let example2 = UITableViewRowAction(style: .normal, title: "example2") { (action: UITableViewRowAction!, indexPath: IndexPath!) -> Void in
// run your desired action
}
example2.backgroundColor = .green
let example3 = UITableViewRowAction(style: .normal, title: "example3") { (action: UITableViewRowAction!, indexPath: IndexPath!) -> Void in
// run your desired action
}
example3.backgroundColor = .orange
return [example1, example2, example3]
}
はいあなたはtableviewのperticularセルにswipegestureを使用できます –