标签: swift uicollectionview uicollectionviewcell
我使用它来动态地制作按钮的大小,一切都很好,但是当我滚动时,有时许多按钮的标题会消失,当我再次滚动时会出现标题。请帮忙。
这是文字消失时的图像。
当文字再次出现时。
答案 0 :(得分:0)
尝试在按钮上添加图层:
yourButton.layer.insertSublayer(shapeLayer, below: yourButton.titleLabel?.layer)
shapeLayer 是形状的按钮。
shapeLayer
Check this response if it's useful for your problem