UITableViewDiffableDataSource with two tables?

can i use a single UITableViewDiffableDataSource with two table views at the same time or is it not supported?

traditional datasources can do that, and my code has this dependency at the moment.
Answered by andy_ in 620257022
Unfortunately, no. Diffable data source maps to one tableView. An alternative you could consider is to create a wrapper object that manages the data sources by applying the same changes.
Accepted Answer
Unfortunately, no. Diffable data source maps to one tableView. An alternative you could consider is to create a wrapper object that manages the data sources by applying the same changes.
UITableViewDiffableDataSource with two tables?
 
 
Q