when I disable scrolling. It disabled for both horizontal and vertical. how do I disable scroll for only vertical only? settings for collectionview
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
}