gpt4 book ai didi

ios - 无法在 TTTAttributedLabel 上设置 linkAttributes

转载 作者:行者123 更新时间:2023-11-29 02:20:46 25 4
gpt4 key购买 nike

在我的代码中使用 TTTAttributedLabel:

NSString *contentText = @"some text here foo bar";

[self.content setText:contentText afterInheritingLabelAttributesAndConfiguringWithBlock:^NSMutableAttributedString *(NSMutableAttributedString *mutableAttributedString) {
return mutableAttributedString;
}];
self.content.linkAttributes = @{ NSForegroundColorAttributeName: [UIColor redColor],
NSUnderlineStyleAttributeName: [NSNumber numberWithInt:NSUnderlineStyleSingle] };
NSRange range = [self.content.text rangeOfString:@"foo bar"];
[self.content addLinkToURL:[NSURL URLWithString:@"action://load-foo"] withRange:range];
[self.content setNeedsDisplay];

就点击范围文本和执行操作而言,一切都完美无缺,但是,唯一似乎不起作用的是文本颜色。我是否在库中正确使用了 NSForegroundColorAttributeName

编辑:

“不起作用”是带下划线的文本保持灰色,而不是像我在上面设置的那样是红色。

最佳答案

我之前也遇到过同样的问题,折腾了好久也没找到原因,放弃了你说的方案,想出了以下方法:

NSString *contentText = @"some text here foo bar";
NSString* matchString = @"foo bar";
NSRegularExpression *mentionExpression = [NSRegularExpression regularExpressionWithPattern:matchString options:NO error:nil];
NSArray *matches = [mentionExpression matchesInString:contentText
options:0
range:NSMakeRange(0, [contentText length])];
for (NSTextCheckingResult *match in matches) {
NSRange matchRange = [match rangeAtIndex:0];
NSString *mentionString = [contentText substringWithRange:matchRange];
NSArray *keys = @[(id) kCTForegroundColorAttributeName, (id) kCTUnderlineStyleAttributeName
];
NSArray *objects = @[[UIColor redColor], @(kCTUnderlineStyleNone)];
NSDictionary *linkAttributes = @{keys : objects};

[self.yourlabel addLinkWithTextCheckingResult:match attributes:linkAttributes];
}
self.yourlabel.delegate = self;

//Then overwrite the delegate method for the link click actions
- (void)attributedLabel:(TTTAttributedLabel *)label didSelectLinkWithTextCheckingResult:(NSTextCheckingResult *)result {
//do whatever you need
}

此解决方案的优点是您可以根据需要添加任意数量的自定义链接样式。

当然,如果您坚持使用 addLinkToURL,另一种可能的解决方案是更改 TTTAtributedLabel 源代码以更改默认链接颜色。

关于ios - 无法在 TTTAttributedLabel 上设置 linkAttributes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28166812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com