所以,我可以添加任务并在我的应用程序中保留这些任务。现在我想要做的是能够删除任务并保留我删除的内容。我正在使用可滑动的单元格可可豆荚,以便允许用户向左滑动并删除项目。但是,我的代码似乎没有按照我想要的方式运行。首先,滑动手势不起作用,其次如果我有“task1”,“task2”,“task3”,我无法删除任务3但我可以删除任务1然后我可以删除任务3.此外,有时我删除的项目是持久的,有时不是。我的代码如下,非常感谢任何帮助。
class DailyTasksTableViewController: UITableViewController {
//Variables
var tasksArray = [Task]()
let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
.....
extension DailyTasksTableViewController: SwipeTableViewCellDelegate {
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation) -> [SwipeAction]? {
guard orientation == .right else { return nil }
let deleteAction = SwipeAction(style: .destructive, title: "Delete") { action, indexPath in
self.context.delete(self.tasksArray[indexPath.row])
self.tasksArray.remove(at: indexPath.row)
do {
try self.context.save()
}catch{
print("error saving delete \(error)")
}
}
// customize the action appearance
deleteAction.image = UIImage(named: "delete-icon")
return [deleteAction]
}
func tableView(_ tableView: UITableView, editActionsOptionsForRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation) -> SwipeOptions {
var options = SwipeOptions()
options.expansionStyle = .destructive
return options
}
}
答案 0 :(得分:0)
答案为"首先,滑动手势不起作用"
func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}