Search code examples
swiftcollectionview

How do i disable vertical scrolling but enable horizontal scrolling in collectionview swift 4?


when I disable scrolling. It disabled for both horizontal and vertical. how do I disable scroll for only vertical only? settings for collectionview


Solution

  • It's not possible to scroll collectionView in both directions. Either it will scroll horizontally or vertically.

    User scrollDirection to specify your desired scroll direction.

    if let flowLayout = collectionView.collectionViewLayout as?  UICollectionViewFlowLayout {
        flowLayout.scrollDirection = .horizontal
        flowLayout.scrollDirection = .vertical
    }