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
swift 4:
func scrollToNextCell(){
//get cell size
let cellSize = view.frame.size
//get current content Offset of the Collection view
let contentOffset = collectionView.contentOffset
if collectionView.contentSize.width <= collectionView.contentOffset.x + cellSize.width
{
let r = CGRect(x: 0, y: contentOffset.y, width: cellSize.width, height: cellSize.height)
collectionView.scrollRectToVisible(r, animated: true)
} else {
let r = CGRect(x: contentOffset.x + cellSize.width, y: contentOffset.y, width: cellSize.width, height: cellSize.height)
collectionView.scrollRectToVisible(r, animated: true);
}
}