I have an Horizontal UICollectionView on my app and I want to load more data when the user reaches the end (or nearly to the end) of UICollectionView w
Horizontal
UICollectionView
Add this in your collectionView willDisplayCell delegate
if (indexPath.row == dataSource.count - 1 ) { //it's your last cell //Load more data & reload your collection view }