ios - Populate UICollectionView from left to right when scrolling direction is horizontal -


when scrolling direction horizontal cells added in uicollectionview top bottom enter image description here

for scrolling direction = vertical, added left right. enter image description here

the question is, if there way add cells left right when scrolling direction horizontal ?

you need use uicollectionviewflowlayout , set scrolldirection property to

flowlayout.scrolldirection = uicollectionviewscrolldirectionhorizontal; 

default setting is vertical (top bottom)


Comments