I'm curious if either of the following are possible:
Can the carousel be set up to have an infinite loop?
Does the carousel have to start with the first cell in the central position, or can we choose which cell should appear in that position at the beginning?
Yes, you could do this by ensuring that the carousel datasource (UICollectionViewDatasource) continuously returns repeated data
No, you can start with whatever cell you want in the centre position. To do this, call the scrollToItem(at:at:animated:) method of UICollectionView on the carousel
I'm curious if either of the following are possible: