gpt4 book ai didi

ios - 行距在 OHAttributedLabel 中不起作用

转载 作者:行者123 更新时间:2023-11-28 22:14:45 26 4
gpt4 key购买 nike

这是代码:

NSString *labelString = @"Username: \n some text";
NSMutableAttributedString *labelAttributedString = [[NSMutableAttributedString alloc]initWithString:labelString];
...
self.smartLabel.attributedText = labelAttributedString;

标签是:

Username: some text

代替:

Username:
some text

编辑:标签有足够的空间将文本放在 1 行中,但我仍然想插入分隔线(以编程方式!)

最佳答案

看起来您的标签只有一行显示,将您的标签行增加到两行或多于两行,如给定图像所示。 enter image description here

****Edite**:因为你的标签是 OHAtributedLabel 所以你可以通过下面给出的代码来做同样的事情**

self.smartLabel.numberOfLines = 0;

self.smartLabel.lineBreakMode = NSLineBreakByWordWrapping

关于ios - 行距在 OHAttributedLabel 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21984116/

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