UICollectionView autosize height

前端 未结 9 1684
孤城傲影
孤城傲影 2020-12-04 07:02

How do I properly resize a UICollectionView so that it fully displays its contents? I have tried many things, including setting its frame, calling reloadData an

9条回答
  •  渐次进展
    2020-12-04 07:24

    Here's my implementation in Swift 3:

    override func sizeThatFits(_ size: CGSize) -> CGSize {
        if (self.superview != nil) {
            self.superview?.layoutIfNeeded()
        }
    
        return collectionView.contentSize
    }
    

提交回复
热议问题