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