0
ユーザーが完全/不完全のようにUITableViewRowActionのタイトルを変更するたびに、私が書いたコードはチェックマークを入れますが、タイトルは変更しないので、チェックマークは変更できません削除する:UITableViewRowAction swiftのタイトルを変更する3
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let completeAction = UITableViewRowAction(style: .normal, title: "Complete", handler: { (action, indexPath) in
if action.title == "Complete"{
action.title = "Incomplete"
cell?.accessoryType = UITableViewCellAccessoryType.checkmark
}
else{
cell?.accessoryType = UITableViewCellAccessoryType.none
action.title = "Complete"
}
tableView.setEditing(false, animated: true)
})
completeAction.backgroundColor = .blue
return [completeAction]
}
アドバイスはありますか?