I see the same issue on an Intel 16" MBP, it's not M1 specific.
Post
Replies
Boosts
Views
Activity
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
}
}