gpt4 book ai didi

ios - RTLabel问题(粗体链接)

转载 作者:行者123 更新时间:2023-12-01 19:05:55 24 4
gpt4 key购买 nike

我从https://github.com/honcheng/RTLabel使用RTLabel
我需要使用文本中的链接,我使用:

moreInfoString = [NSString stringWithFormat:@"%@ <a href='%@'>%@</a>", text, httpReferense, title];
RTLabel *descriptionSourceLabel = [[RTLabel alloc] init];
descriptionSourceLabel.backgroundColor = [UIColor clearColor];
descriptionSourceLabel.delegate = self;
[descriptionSourceLabel setText:moreInfoString];

但链接中的文本为粗体。如何取消链接中的粗体?

最佳答案

linkAttributes属性可用于链接的自定义样式。如果将linkAttributes设置为空字典,则不会设置链接的样式。

// Remove all link styles
descriptionSourceLabel.linkAttributes = @{};

// To change only i.e. link color
descriptionSourceLabel.linkAttributes = @{@"color": @"red"};

关于ios - RTLabel问题(粗体链接),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19675097/

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