我在storyboard中设计了UICollectionViewCell 。由UILabel、UIImageView两个元素组成。
对于 UILabel 我给定的约束前导=0,尾随=0,底部=0,高度=100
我的collectionViewCell
但是当我在模拟器中运行时:
编辑:当我在界面检查器中观察时,标签未附加到 collectionView 上的 View :
Best Answer-推荐答案 strong>
我通过在 cellForItemAtIndexPath 中添加这些行来解决问题
[cell setNeedsLayout];
[cell layoutIfNeeded];
关于ios - UICollectionViewCell 中的 UILabel,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/38203408/
|