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