UICollectionView Layout Issue

前端 未结 15 1737
天涯浪人
天涯浪人 2020-12-24 00:17

I am using UICollectionView using the flow layout. I have made a custom UICollectionViewCell for the same. But on running the project the console k

15条回答
  •  -上瘾入骨i
    2020-12-24 01:17

    That fixed my problem:

    -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath 
    { 
    return CGSizeMake(self.collectionView.frame.size.width, self.collectionView.frame.size.height - 70);
    }
    

    U can see padding value from top and bottom on this screen:

提交回复
热议问题