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.
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