CollectionView move to next cell automatically swift

后端 未结 11 2302
耶瑟儿~
耶瑟儿~ 2021-01-31 21:05

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

11条回答
  •  我在风中等你
    2021-01-31 21:22

    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()
    

提交回复
热议问题