我有一个UICollectionView
,使用基本流程布局。我已经实现了该insetForSectionAtIndex
方法,返回UIEdgeInsets
带有顶部和底部插图以及左侧和右侧的 a:
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
return UIEdgeInsetsMake(2.0f, 2.0f, 2.0f, 2.0f);
}
结果是每个单元格的左右都有2.0f的“padding”,而上下没有“padding”。它是齐平的(0.0f)。我错过了什么?
谢谢。