在TableView中创建圆形图像

时间:2016-04-19 21:28:37

标签: arrays swift uitableview uiimageview

我从Parse得到一个图像列表,我试图将它们全部显示为圆形,即使Parse中的图像是正方形。在cellForRowAtIndexPath中,我使用此代码:

cell1.imageView!.layer.cornerRadius = cell1.imageView!.frame.size.height / 2
cell1.imageView!.clipsToBounds = true

以下是现在出现的内容:Image

为什么图像不圆?

1 个答案:

答案 0 :(得分:1)

确保在操纵转角半径后立即将masksToBounds设置为true。:

cell.cellImage.layer.masksToBounds = true

这是你错过的最后一步。