Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. func autoScroll(time: Int){
  2. DispatchQueue.main.async {
  3. self.run(after: time) {
  4. cell._collectionView.scrollToItem(at: IndexPath(row: indexItem, section: 0), at: .centeredHorizontally, animated: true)
  5. indexItem += 1
  6. autoScroll(time: 3)
  7. return
  8.  
  9. }
  10.  
  11. }
  12. }
  13.  
  14. autoScroll(time: 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement