我已完成以下操作以使 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];
但我没有在链接中看到两种不同的颜色,而只是看到一种。我在这里做错了什么?基本上我有一个通过 addLink 添加的链接,如下所示:
[self.commentsText_ addLink:[NSURL URLWithString:url] range:usernameRange];
我希望它有红色。我该怎么做?