Skip to content

Instantly share code, notes, and snippets.

@kayoslab
kayoslab / TableViewController+Sort.swift
Last active May 31, 2021 17:59
Reorder UITableViewCells and modify the underlying CoreData Model
class TableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
navigationItem.rightBarButtonItem = editButtonItem
}