UICollectionViewCell content wrong size on first load

前端 未结 5 1730
感情败类
感情败类 2020-12-15 02:52

I have a added a UICollectionView to my UIViewController and have made a custom cell for it.

I set the size of the cell using the siz

5条回答
  •  南笙
    南笙 (楼主)
    2020-12-15 03:28

    I had once similar problem (content of my cell was not fitting cell even with correct autolayout). The bug was caused by not calling super.layoutSubviews() in overriden function layoutSubviews() that was in Cell's class.

提交回复
热议问题