我想在UITextView中显示两种不同的链接。我想改变其中一种颜色。以下代码成功设置了链接的字体和文本,但NSForegroundColorAttributeName
未设置为UIColor.green
:
attributedText?.addAttributes([NSFontAttributeName: UIFont(name:"Helvetica-Light", size:16.0)!,
NSForegroundColorAttributeName: UIColor.green,
NSLinkAttributeName: value!],
range: range)
如何更改特定链接的颜色? UITextView.linkTextAttributes
不会这样做,因为它设置了所有链接的颜色。