Fry
Fry

Reputation: 6275

UICollectionView with row with two columns and other row with one column

I have a customer that wants a news page like this

enter image description here

but with UICollectionView I have no idea how to do. I have to use reusable element because this page may be contains infinite elements.

Idea ?

Upvotes: 1

Views: 867

Answers (1)

wootage
wootage

Reputation: 936

You can use -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath and set different size for each cell

Upvotes: 2

Related Questions