Hi, i had a same issue with collection view on iOS 14 and i found out, if you have paging enabled on your collection view, method scrollToItem will do nothing. Workaround for this is to set paging on false before this method and then turn it back to true.
self.collectionView.isPagingEnabled = false
self.collectionView.scrollToItem(at: indexPath, at: .left, animated: false)
self.collectionView.isPagingEnabled = true
This is temporary solution for this bug on iOS14. Hope this will help someone and save their time :)