I need to create a UICollectionView like the following picture.
I have been able to make horizontally scrollable, but unable to make the UI like the picture. Any help? Thanks.
I need to create a UICollectionView like the following picture.
I have been able to make horizontally scrollable, but unable to make the UI like the picture. Any help? Thanks.
Here in this sample LineLayout has already implemented the required custom layout (that's what I guessed from the image shown).
Here is what you wanted,you just need to have a custom UICollectionViewFlowLayout,and override the method
-(NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
to change the cell display attributes.Here is the layout code with comment in each main operation