UICollectionView在节之间设置空格

时间:2014-02-04 17:52:00

标签: ios cocoa-touch cocoa

我有一个UICollectionView,它显示了圆形的单元格行。在偶数行,我希望整个部分有一个边距左。

布局将是这样的:

O O O O O
 O O O O
O O O O O 

我是否必须对流程布局进行子类化或是否有更简单的方法?

1 个答案:

答案 0 :(得分:0)

我猜,不。

一种方法可能是操纵偶数行的第一个单元格(每行)宽度。

 ...    cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    if(indexPath.row%2==0 && indexPath.column==0)
        //modify the first cells frame or bounds

}