คล้าย ๆ กับการทำให้ลากได้ ให้เราบอก TableView ว่า dropDelegate คือฉันนะ (TodoListViewController)
override func viewDidLoad() {
super.viewDidLoad()
todo.add(item: TodoItem(title: "Download XCode", isDone: true))
todo.add(item: TodoItem(title: "Buy milk"))
todo.add(item: TodoItem(title: "Learning Swift", isDone: false))
tableView?.dragDelegate = self
tableView?.dragInteractionEnabled = true
tableView?.dropDelegate = self
}
func tableView(_ tableView: UITableView, performDropWith coordinator: UITableViewDropCoordinator) {}
func tableView(_ tableView: UITableView, canHandle session: UIDropSession) -> Bool {
session.localDragSession != nil
}
func tableView(_ tableView: UITableView, dropSessionDidUpdate session: UIDropSession, withDestinationIndexPath destinationIndexPath: IndexPath?) -> UITableViewDropProposal {
UITableViewDropProposal(operation: .move, intent: .insertAtDestinationIndexPath)
}
เนื่องจากเป็นการ reordering ทาง Apple บอกว่าจะไม่เรียกฟังก์ชั่น performDrop นะ ให้ใช้ TableViewDataSource อันเก่า
func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
true
}
func tableView(_ tableView: UITableView, moveRowAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
todo.move(from: sourceIndexPath.row, to: destinationIndexPath.row)
}