UICabel在UICollectionViewCell中

时间:2016-07-05 12:24:47

标签: ios autolayout uilabel uicollectionviewcell

我在故事板中设计了UICollectionViewCell。拥有2个元素UILabel,UIImageView。

对于UILabel我给出约束前导= 0,尾随= 0,底部= 0,高度= 100

我的 collectionViewCell enter image description here

但是当我在模拟器中运行时: enter image description here

编辑:当我在界面检查器中观察到时,标签未附加到collectionView上的视图: enter image description here

1 个答案:

答案 0 :(得分:1)

我通过在cellForItemAtIndexPath

中添加这些行来解决问题
[cell setNeedsLayout];
[cell layoutIfNeeded];