How to change UICollectionView Scroll Direction?

前端 未结 2 1074
我在风中等你
我在风中等你 2021-02-01 02:20

I have successfully implemented a UICollectionView. Is it possible to change the scrollDirection?

Can you please show how to implement it pro

2条回答
  •  时光取名叫无心
    2021-02-01 02:47

    This is how you create it in code with UICollectionViewFlowLayout

    let layout = UICollectionViewFlowLayout()
    layout.scrollDirection = .vertical
    let collectionView = UICollectionView(frame: frame, collectionViewLayout: layout)
    

    or if you are working with an existent collection view

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

提交回复
热议问题