Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UICollectionView Bring Item to center position

I have used collectionview to show models as well as years and the user can swipe the cells.

The cell which is selected would be positioned to center not depending on number of items.

Any help would be highly appreciated.

like image 221
Diksha Avatar asked Jun 20 '16 08:06

Diksha


1 Answers

SOL 1:

collectionView.scrollToItemAtIndexPath(indexPath, atScrollPosition: .centeredHorizontally, animated: true)

SOL 2: I suggest you add empty items at the beginning and end. So the user can scroll the first and last visible item to the centre.

like image 169
Lumialxk Avatar answered Nov 05 '22 09:11

Lumialxk