Cell spacing in UICollectionView

How do I set cell spacing in a section of UICollectionView? I know there is a property minimumInteritemSpacing I have set it to 5.0 still the spacing is not appearing 5.0. I have implemented the flowout delegate method. – (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section { return 5.0; } still I am not getting the desired result. … Read more

UICollectionView Self Sizing Cells with Auto Layout

I’m trying to get self sizing UICollectionViewCells working with Auto Layout, but I can’t seem to get the cells to size themselves to the content. I’m having trouble understanding how the cell’s size is updated from the contents of what’s inside the cell’s contentView. Here’s the setup I’ve tried: Custom UICollectionViewCell with a UITextView in … Read more