NIAttributedLabel のリンクに異なる色を付けるために、次のことを行いました。
NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
[attributes setValue:[UIColor colorWithRed:86.0/255.0 green:134.0/255.0 blue:172.0/255.0 alpha:1.0] forKey:NSForegroundColorAttributeName];
[attributes setValue:[UIColor colorWithRed:0.0 green:136/255.f blue:204/255.f alpha:1.0] forKey:NSForegroundColorAttributeName];
[self.commentsText_ setAttributesForLinks:attributes];
しかし、リンクに 2 つの異なる色が表示されているのではなく、1 つだけ表示されています。ここで何が間違っていますか?基本的に、次のように addLink を介して追加したリンクがあります。
[self.commentsText_ addLink:[NSURL URLWithString:url] range:usernameRange];
これにredColorを持たせたい。どうすればいいですか?