CollectionView: selectItem scroll not working in iOS14

Description:
We have displayed set of seat numbers horizontally in collectionview like(1A 1B 1C 1D 1E 1F 1G). So, if user select any seat id, then it should scroll to center and highlight.

Code:
seatCollectionView.selectItem(at: indexValue, animated: true, scrollPosition: .centeredHorizontally)

Currently, above code works fine in iOS12 & iOS13.

But same code not working fine in iOS14. Its highlighting the particular seatId but not scrolling that seatId to center of the screen(collectionView).

Any solution for this?
have you checked that
Code Block
seatCollectionView.selectItem(at: indexValue, animated: true, scrollPosition: .centeredHorizontally)

is effectively called ?
add a print
Code Block
seatCollectionView.selectItem(at: indexValue, animated: true, scrollPosition: .centeredHorizontally)
print("Scrolled to", indexValue")

And please show the func where you call this.
CollectionView: selectItem scroll not working in iOS14
 
 
Q