在iOS Swift中设置特定超链接的颜色(与所有链接相对)

时间:2017-03-05 05:24:55

标签: ios swift hyperlink uitextview

我想在UITextView中显示两种不同的链接。我想改变其中一种颜色。以下代码成功设置了链接的字体和文本,但NSForegroundColorAttributeName未设置为UIColor.green

attributedText?.addAttributes([NSFontAttributeName: UIFont(name:"Helvetica-Light", size:16.0)!,
                               NSForegroundColorAttributeName: UIColor.green,
                               NSLinkAttributeName: value!],
                               range: range)

如何更改特定链接的颜色? UITextView.linkTextAttributes不会这样做,因为它设置了所有链接的颜色。

0 个答案:

没有答案