Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UICollectionView.scrollToItem set animation speed

When using collectionView.scrollToItem with IndexPath. is it possible to set custom scroll speed?

like image 398
gutte Avatar asked Jul 24 '18 16:07

gutte


1 Answers

Yes, it is possible. Try this:

UIView.animate(withDuration: 5, animations: { [weak self] in
    self?.collectionView.scrollToItem(at: IndexPath(item: 10, section: 10), at: .middle, animated: false)
})
like image 144
Michal Gorzalczany Avatar answered Sep 22 '22 20:09

Michal Gorzalczany