我有一个表格视图,在其中一行中,我有一个自定义单元格,它有一个带有水平滚动的集合视图。在集合视图单元格中,我有为其添加圆角的图像。
img_Photo.backgroundColor = UIColor.colorFromCode(0xf2f2f2)
img_Photo.layer.cornerRadius = img_Photo.frame.height / 2
img_Photo.layer.masksToBounds = true
圆角半径首先显示如下,然后滚动它看起来很合适。我缺少什么来正确设置它。
我在 tableviewcell 中添加了 layoutIfNeeded
override func layoutIfNeeded() {
super.layoutIfNeeded()
collectView.frame = self.contentView.bounds
}