I have a UICollectionView
that I feed data into using UICollectionViewDiffableDataSource
. I want to display a scroll scrubber on the trailing edge of it, like I'd get if I implemented the data source methods indexTitlesForCollectionView
and indexPathForIndexTitle
. But the data source is the diffable data source object, and there's no property or closure on it to supply index titles as of iOS 15.
How are index titles supposed to work with UICollectionViewDiffableDataSource
?