如何向UILabel添加填充文件包含NSBackgroundColorAttributeName

时间:2014-07-22 21:33:16

标签: ios swift uilabel nsattributedstring

我无法找到一种方法来为我的UILabel添加填充,其中包含一个包含文本背景颜色的属性字符串。

如图所示,标签的文字上没有任何左侧填充 - 我需要能够在左侧和右侧添加一些填充。 这是我目前的代码:

var attributedString = NSMutableAttributedString(string: "\(blueHighlightedText)")
attributedString.addAttribute(NSBackgroundColorAttributeName, value: UIColor(red: 0.369, green: 0.718, blue: 0.882, alpha: 0.83), range: NSMakeRange(0, blueHighlightedText.bridgeToObjectiveC().length))
attributedString.addAttribute(NSParagraphStyleAttributeName, value: paragraphStyle, range: NSMakeRange(0, blueHighlightedText.bridgeToObjectiveC().length))
attributedString.addAttribute(NSKernAttributeName, value: -0.35, range: NSMakeRange(0, blueHighlightedText.bridgeToObjectiveC().length))

attributedText = NSAttributedString(attributedString: attributedString)

如何为此添加填充?

1 个答案:

答案 0 :(得分:0)

设置标签的contentEdgeInsets,或将标签作为子视图添加到彩色视图和位置。