如何在swift中使用属性初始化字符串?

时间:2014-11-08 09:24:49

标签: swift osx-yosemite

我想初始化一个包含一些属性的字符串,但是我收到了这个错误:

"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]) 

有谁知道为什么?

0 个答案:

没有答案