I am using an UICollectionView with UICollectionViewFlowLayout.
UICollectionView
UICollectionViewFlowLayout
I set the size of each cell through the
collectionView:lay
There's a simple way to set collection view cell size:
UICollectionViewFlowLayout *layout = (id) self.collectionView.collectionViewLayout; layout.itemSize = CGSizeMake(cellSize, cellSize);
Not sure if it's animatable though.