我想在另一个标签下方显示一个标签的文本。虽然文本应该从第一个标签的右侧开始,并且应该在另一个标签下方。请告诉我可以使用 ios 吗?
我得到了您问题的解决方案。它非常简单易懂。
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 bold 和 fontsize 以供引用。如果您想更改为 systemBold,只需更改并根据您的要求设置字体大小。
谢谢你-
关于ios - 如何在iOS中显示两个一个标签文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33073363/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |