HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 链接TTTAttributedLabel的轻击颜色大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的项目中使用了TTTAttributedLabel.我设法通过修改链接属性来更改我创建的任何链接认颜色和下划线.
NSArray *pKeys = [[NSArray alloc] initWithObjects:(id)kCTForegroundColorAttributename,(id)kCTUnderlinestyleAttributename,nil];

NSArray *pObjects = [[NSArray alloc] initWithObjects:pAlertColor,[NSnumber numberWithInt:
                                                                             kCTUnderlinestyleNone],nil];

NSDictionary *pLinkAttributes = [[NSDictionary alloc] initWithObjects:pObjects
                                                                  forKeys:pKeys];

self.alertmessage.linkAttributes = pLinkAttributes;
self.alertmessage.activeLinkAttributes = pLinkAttributes;

但是,我注意到,当我点击链接时,随着点击的任何其他链接,它会变红.我需要改变这种颜色.有什么线索可以怎么做?

解决方法

你会喜欢看看 TTTAttributedLabel documentation,特别是在activeLinkAttributes

大佬总结

以上是大佬教程为你收集整理的ios – 链接TTTAttributedLabel的轻击颜色全部内容,希望文章能够帮你解决ios – 链接TTTAttributedLabel的轻击颜色所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。