I'm using UITableViewDiffableDataSource
to render cells, and I wonder how to animate rows granularily.
There's a property
self.dataSource?.defaultRowAnimation = .fade
which apply for all rows of the tableView, but I would like some animation for certain cells, and NO animation for others. The "default" in "defaultRowAnimation" suggest there are other methods.
Unfortunately, Apple documentation on the subjet is a bit light
Is there a method that asks a RowAnimation
according to the given IndexPath
for example?