I am trying to create horizontal slider like Flipkart. I am using collectionView with Horizontal scrolling and paging. Cell contains imageView. I am succeed in scrolling items h
You can achieve that using this AutoScrollCollectionView cocoapod to scroll automatically within specific intervals
It is as simple as subclassing your collection view from AutoScrollCollectionView and call startAutoScrolling method as shown below
self.autoScrollCollectionView.startAutoScrolling(withTimeInterval: TimeInterval(exactly: 2.0)!)
self.autoScrollCollectionView.stopAutoScrolling()