1

i'm trying to change UIColloectionViewCustomLayout scrollDicretion to Horizontal. I have tried to :

let layout = CollectionViewLayout()
    layout.scrollDirection = .Horizontal
    self.collectionView.collectionViewLayout = layout

I need get this results

[1][4][7]
[2][5][8]
[3][6][9]

Now i have this

[1][2][3]
[4][5][6]
[7][6][9]
Ignelio
  • 101
  • 11