在Swift中创建动态字符串的标签背景

时间:2016-07-03 16:37:27

标签: swift uikit

如何设计此类标签背景?

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

您可以突出显示文字

导入UIKit

let text = NSMutableAttributedString(string: "Hello")
text.addAttribute(NSBackgroundColorAttributeName, value: UIColor.grayColor(), range: NSMakeRange(0, text.length))
let label = UILabel(frame: CGRect(x: 0, y: 0, width: 60, height: 100))
label.textColor = .whiteColor()    
label.attributedText = text

这是&#39>的样子

enter image description here