gpt4 book ai didi

ios - UICollectionViewCell 未填充屏幕宽度

转载 作者:行者123 更新时间:2023-11-29 05:59:10 24 4
gpt4 key购买 nike

我试图让我的 UICollectionView 的单元格填充整个宽度,但它看起来像这样:

enter image description here

我尝试过这样的事情:

func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: UIScreen.main.bounds.size.width, height: UIScreen.main.bounds.size.height+140)
}

但它没有做任何事情。提示?

最佳答案

您需要使用sizeForItemAt而不是sizeForItemAtIndexPath。 sizeForItemAtIndexPath 向委托(delegate)询问指定项目单元格的大小。

您需要使用 Swift 3+:

 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: UIScreen.main.bounds.size.width, height: UIScreen.main.bounds.size.height+140)
}

关于ios - UICollectionViewCell 未填充屏幕宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54857053/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com