My UICollectionView cells contain UILabels with multiline text. I don't know the height of the cells until the text has been set on the label.
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath;
Was the initial method I looked at to size the cells, however this is called BEFORE the cells are created out of the Storyboard. Is there a way to layout the collection and size the cells AFTER they have been rendered, and I know the actual size of the cell?