Прокрутить CollectionView (CollectionView scroll to top) - Swift 5
//Прокрутить вверх
self.collectionView.setContentOffset(CGPoint(x:0 ,y:0), animated: true)
//Не прокручивать - сохранить текущую позицию
self.collectionView.setContentOffset(CGPoint(x:0,y: collectionView.contentOffset.y - 100), animated: true)
Возврат к списку