gpt4 book ai didi

ios - 如何在 iOS 中显示两个标签文本下方的其他文本?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:57:13 24 4
gpt4 key购买 nike

我想在另一个标签下方显示一个标签的文本。虽然文本应该从第一个标签的右侧开始,并且应该在另一个标签下方。请告诉我使用 ios 是可能的吗?

enter image description here

最佳答案

我得到了你问题的答案。它非常简单易懂。

NSMutableAttributedString *mutableAttributeStr = [[NSMutableAttributedString alloc]initWithString:@"User this is just a comment.This just a comment.This just a comment."];

NSAttributedString *attributeStr = [[NSAttributedString alloc]initWithString:@"\n" attributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:8]}];

[mutableAttributeStr addAttribute:NSFontAttributeName value: [UIFont fontWithName:@"Helvetica-Bold" size:14.0] range:NSMakeRange(0, 4)];

[mutableAttributeStr appendAttributedString:attributeStr];

labelTextBelowAnotherLabel.numberOfLines = 0;

[labelTextBelowAnotherLabel setAttributedText:mutableAttributeStr];

上面在编码中我设置了 helvetica 粗体和字体大小以供引用。如果你想更改为 systemBold 只需更改并根据你的要求设置字体大小。

谢谢你-:)

关于ios - 如何在 iOS 中显示两个标签文本下方的其他文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33073363/

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