我想初始化一个包含一些属性的字符串,但是我收到了这个错误:
"Canot invoke "init" with an argument list of type '(string: @value String, attributes: $T8)
这是我的代码: 更新:
var myColor: NSColor = NSColor.greenColor()
vat myStr = "content"
let string = NSAttributedString(string: myStr, attributes: [
NSForegroundColorAttributeName: myColor,
NSKernAttributeName: -2,
NSFontAttributeName: myFont])
有谁知道为什么?