如何使用带有背景图片的圆形按钮(Swift 4)

时间:2019-01-10 18:30:18

标签: swift4

我有一个圆形按钮,我想通过照片库显示图像,但是当我给它提供背景图像时,它会变成正方形。我需要知道如何使按钮既是圆形的又包含背景图像。

1 个答案:

答案 0 :(得分:0)

使用

YourbuttonObject.layer.cornerRadius = YourbuttonObject.frame.height/2
YourbuttonObject.clipsToBounds = true

现在,当您设置backgroundImage时,它将是圆形

或者您可以使用ImageView并将其像按钮一样使用,并为其设置backgroundImage并执行

YourImageObject.layer.cornerRadius = YourImageObject.frame.height/2
YourIamgeObject.clipsToBounds = true