删除collectionview中部分之间的空间 [英] Remove space between sections in collectionview

查看:22
本文介绍了删除collectionview中部分之间的空间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何调整集合视图部分之间的间距.

How to adjust the spacing between sections of collection view.

推荐答案

可以通过调整collection view layout的params来调整header的高度.以下是完美运行的代码.

Header height can be adjusted by adjusting the params of the collection view layout. Following is the code which works perfectly fine.

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section 
{
    if ([[sectionHeaderArray objectAtIndex:section] boolValue]) {
        return UIEdgeInsetsMake(10, 10, 10, 10);
    }
      return UIEdgeInsetsZero;
}

这篇关于删除collectionview中部分之间的空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆