如何获得UICollectionViewCell的正确框架,在它的子类(How to get the

2019-10-21 14:42发布

我有一个UICollectionView ,我把它的CELLSIZE在viewDidLoad

    let cellWidth = self.view.frame.width / 2
    self.collectionViewFlowLayout.itemSize = CGSize(width: cellWidth, height: 100)`

我尝试渐变图层添加到我的自定义UICollectionViewCell 。 但帧的大小是一个我从故事板设置。 我不能在我得到正确,计算的帧大小UICollectionViewCell子类的layoutSubviews方法。

我怎么才能得到正确的帧大小?

文章来源: How to get the correct frame of UICollectionViewCell in it's subclass