Reputation: 6275
I have a customer that wants a news page like this
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
Reputation: 936
You can use -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
and set different size for each cell
Upvotes: 2