gpt4 book ai didi

iphone - TTTAttributedLabel 中的单词被截断

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:47:04 27 4
gpt4 key购买 nike

我正在使用 TTTAttributedLabel,但现在当我尝试显示一些链接时,它会从中心切掉这个词,就像您在附图中看到的那样,“fun”这个词在“f”和“un”出现后被切掉了下一行。但我希望完整的单词应该显示在第一行或下一行。任何帮助。

enter image description here

enter image description here

if ([_label isKindOfClass:[TTTAttributedLabel class]])
{
TTTAttributedLabel *tttLabel=(TTTAttributedLabel *)_label;

[tttLabel setDelegate:self];

[tttLabel setDataDetectorTypes:UIDataDetectorTypeLink|UIDataDetectorTypePhoneNumber];
[tttLabel setLineBreakMode:NSLineBreakByWordWrapping];



[tttLabel setText:attributedText];
if ([dic objectForKey:@"texttolink"]!=nil)
{
[tttLabel addLinkToURL:[NSURL URLWithString:[dic objectForKey:@"hyperlink"]] withRange:[text rangeOfString:[dic objectForKey:@"texttolink"] options:NSCaseInsensitiveSearch]];
}



}

最佳答案

在最新版本的 TTTAttributedLabel 中,默认的 linkAttributes 属性已更新为默认自动换行。确保标签和 linkAttributes 都具有所需的换行模式(标签的 lineBreakMode 属性;linkAttributes 的 NSMutableParagraphStyle lineBreakMode )。

关于iphone - TTTAttributedLabel 中的单词被截断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15896445/

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