实际上,默认 System 工作正常。
数据源总数为 7 项
当我刚刚更改为UIEdgeInsets
to left for 时insetForSectionAtIndex
。
UIEdgeInsets
工作正常,但 CollectionView 的可见区域同样集中,右侧角落缺少项目..
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{
return UIEdgeInsetsMake(0,192, 0, 0);
}
但是,当我将其更改为右对齐时,右对齐效果很好,
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{
return UIEdgeInsetsMake(0,0, 0,192);
}
我希望这是一个简单的问题。但我无法得到解决方案。
即使我也被UIContentInsets
&&玩过Spacing
,但没有运气