IOS swift collectionVIew与cell的上部间距怎么调整

2025-05-13 03:49:46
推荐回答(1个)
回答(1):

ayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
{
return 0.0f;
}

- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
{
return 0.0f;
}

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
return UIEdgeInsetsMake(0, 0, 0, 0);
}