我从Parse得到一个图像列表,我试图将它们全部显示为圆形,即使Parse中的图像是正方形。在cellForRowAtIndexPath
中,我使用此代码:
cell1.imageView!.layer.cornerRadius = cell1.imageView!.frame.size.height / 2
cell1.imageView!.clipsToBounds = true
为什么图像不圆?
答案 0 :(得分:1)
确保在操纵转角半径后立即将masksToBounds设置为true。:
cell.cellImage.layer.masksToBounds = true
这是你错过的最后一步。