我想要一个UICollectionView:
[ x x ]
[ x x ]
每个UICollectionViewCell都是120x120
使用:
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake(120, 120);
}
我无法弄清楚如何使两列成为中心。左,中,右的数量相同。
你能帮我解决这个问题吗?
谢谢!
答案 0 :(得分:1)
使用sectionInset
来指示边距。使用minimumInteritemSpacing
确定项目之间的空间。