我正在努力处理我的UICollectionViewCell大小,因为这个函数似乎已被弃用,间距也是如此。我试过这个:

func collectionView(collectionView: UICollectionView,
                        layout collectionViewLayout: UICollectionViewLayout,
                        sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
        return CGSize(width: 150, height: 150)
    }

在Swift 3中我应该使用哪个函数?

最佳答案

你可以在swift3中试试这个代码

override var collectionViewContentSize: CGSize {
    return CGSize(width: 150, height: 150)
}

关于ios - Swift 3操作UICollectionViewCell的大小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40271369/

10-14 21:43