遇到字符错误,请帮忙
func setupBrightnessLabel() {
self.brightnessLabel = UILabel()
self.brightnessLabel.translatesAutoresizingMaskIntoConstraints = false
let text = "BRIGHTNESS"
let attributedString = NSMutableAttributedString(string:text)
attributedString.addAttribute(NSAttributedString.Key.kern, value:labelCharacterSpacing, range: NSMakeRange(0, text.characters.count))
self.brightnessLabel.attributedText = attributedString
self.brightnessLabel.textColor = labelTextColor
self.brightnessLabel.font = labelFont
}