UICollectionView Self Sizing Cells with Auto Layout

前端 未结 16 2109
野性不改
野性不改 2020-11-22 05:58

I\'m trying to get self sizing UICollectionViewCells working with Auto Layout, but I can\'t seem to get the cells to size themselves to the content. I\'m having

16条回答
  •  天命终不由人
    2020-11-22 06:12

    EDIT 11/19/19: For iOS 13, just use UICollectionViewCompositionalLayout with estimated heights. Don't waste your time dealing with this broken API.

    After struggling with this for some time, I noticed that resizing does not work for UITextViews if you don't disable scrolling:

    let textView = UITextView()
    textView.scrollEnabled = false
    

提交回复
热议问题