答案 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>的样子