可以为标签设置背景图像

时间:2015-10-14 10:05:21

标签: swift

我想在项目中为标签设置背景图片,但我不知道如何设置,请说是否有可能?

2 个答案:

答案 0 :(得分:13)

这应该可以解决问题:

yourLabel.backgroundColor = UIColor(patternImage: UIImage(named: "backgroundImage")!)

答案 1 :(得分:1)

UILabel控件没有background imageimage属性。

您可以使用UILabel属性将图片设置为backgroundColor,如下所示:

cell.lblNumber!.text = ""  
cell.lblNumber!.backgroundColor = UIColor(patternImage: UIImage(named: "OK")!)

将文本设置为空,因为它将在其上显示图像和文本。

Screenshot for solution