滚动UICollectionView时,UIButton标题消失

时间:2018-04-22 16:33:14

标签: swift uicollectionview uicollectionviewcell

我使用它来动态地制作按钮的大小,一切都很好,但是当我滚动时,有时许多按钮的标题会消失,当我再次滚动时会出现标题。请帮忙。

enter image description here

这是文字消失时的图像。

enter image description here

当文字再次出现时。

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试在按钮上添加图层:

yourButton.layer.insertSublayer(shapeLayer, below: yourButton.titleLabel?.layer)

shapeLayer 是形状的按钮。

Check this response if it's useful for your problem