I want to remove cell spacing of UICollectionView in our application. I use many code for removing space but they are not working. Please provide me the code also.
Thanks.
I want to remove cell spacing of UICollectionView in our application. I use many code for removing space but they are not working. Please provide me the code also.
Thanks.
If you want to remove cell spacing in UICollectionView, then you need to set cell paddings. and collectionView provide some important methods to handle spacing are insetForSectionAtIndex: , minimumLineSpacingForSectionAtIndex: and minimumInteritemSpacingForSectionAtIndex: .
Here are the examples:
- (UIEdgeInsets)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {return UIEdgeInsetsMake(10, 10, 8, 8); // top, left, bottom, right
}
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section {
return 0.0;
}