в viewdidload добавить этот код
let selectedIndex = arr.count - 1
// последний индекс arr, где arr - ваш массив // dataSource
let indexPath = IndexPath(item: selectedIndex, section: 0)
collectionView.performBatchUpdates({
collectionView.scrollToItem(at: indexPath, at: .bottom, animated: true)
}, completion: nil)