gpt4 book ai didi

ios - 如何使用 swift 4 显示像 facebook 上传图片这样的 collectionView?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:10:49 26 4
gpt4 key购买 nike

enter image description here enter image description here

您好,我想完全按照上图显示 collectionView。我知道它负责 UICollectionViewFlowLayout,但无法做到。非常感谢您的帮助。这是我的代码

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let yourWidth = (collectionView.bounds.width - 4) / 3.0
let yourHeight = yourWidth
return CGSize(width: yourWidth, height: yourHeight)
}

最佳答案

您的答案在您的问题中,但条件不足

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {

switch indexPath.item {
case 0,1:
return CGSize(width: (UIScreen.main.bounds.width - 16) / 2, height: (UIScreen.main.bounds.width - 16) / 2)
default:
return CGSize(width: (UIScreen.main.bounds.width - 32) / 3, height: (UIScreen.main.bounds.width) / 3)
}
}

关于ios - 如何使用 swift 4 显示像 facebook 上传图片这样的 collectionView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50099567/

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