Search code examples
iosuiscrollviewuicollectionviewswift4uipagecontrol

Disable swipe in right direction for UICollectionView


When the offset sits at 0, there is no need for the user to swipe left as there is nothing to see in that direction with the following code:-

collectionView.contentOffset.x = max(0,scrollView.contentOffset.x)

But what about disabling swiping right on the most rightView?


Solution

  • Have you tried this?

    collectionView.bounces = false