我正在为自己制作一个待办事项应用程序,我想创建一个功能来将待办事项标记为已完成。它添加了一个对勾,字体应该变成灰色,但是我是编码新手,所以我真的不知道如何将字体颜色和对勾保存到内存中。我不知道是否要保存到用户默认值或核心数据,最重要的是如何保存它。非常感谢您的帮助。
这是代码: 我要保存textColor和accesoryType
func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let done = UIContextualAction(style: .normal, title: "Done") { (action, view, nil) in
print("Done")
tableView.cellForRow(at: indexPath)?.textLabel?.textColor = UIColor.lightGray
tableView.cellForRow(at: indexPath)?.accessoryType = .checkmark
}
done.backgroundColor = .blue
let config = UISwipeActionsConfiguration(actions: [done])
config.performsFirstActionWithFullSwipe = false
return config
}
答案 0 :(得分:0)
您可以将待办事项添加为var状态:布尔?将其存储在数据库中。 您可以通过设置(状态)设置带有状态的复选标记 希望能帮到您!
答案 1 :(得分:0)
在数据模型中添加属性
var isDone : Bool = false
在cellForRow
中,根据该属性设置用户界面(假设datasourceArray
是数据源数组)
let item = datasourceArray[indexPath.row]
cell.textColor = item.isDone ? .lightGray : .blue
cell.accessoryType = item.isDone ? .checkmark : .none
在操作中,将isDone
属性设置为true
并重新加载行。
let done = UIContextualAction(style: .normal, title: "Done") { (action, view, nil) in
print("Done")
self.datasourceArray[indexPath.row].isDone = true
self.tableView.reloadRows(at: [indexPath], with: .none)
}
并删除
done.backgroundColor = .blue