Post

Replies

Boosts

Views

Activity

Reply to Moving items with UITableViewDiffableDataSource
You can subclass `UITableViewDiffableDataSource` and override the UITableViewDataSource methods as necessary.class EditTableViewDataSource: UITableViewDiffableDataSource<Int, Int> { override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool { return true } override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool { return true } }
Mar ’20