标签: swift
我想在项目中为标签设置背景图片,但我不知道如何设置,请说是否有可能?
答案 0 :(得分:13)
这应该可以解决问题:
yourLabel.backgroundColor = UIColor(patternImage: UIImage(named: "backgroundImage")!)
答案 1 :(得分:1)
UILabel控件没有background image或image属性。
background image
image
您可以使用UILabel属性将图片设置为backgroundColor,如下所示:
UILabel
backgroundColor
cell.lblNumber!.text = "" cell.lblNumber!.backgroundColor = UIColor(patternImage: UIImage(named: "OK")!)
将文本设置为空,因为它将在其上显示图像和文本。