如何将 UILabel 附加到另一个 UILabel 中的文本末尾?
在我的项目中,每个 UITableViewCell 中有一个 UILabel。 每个标签中的文本从 1 行到 2 或 3 行不等。 (我动态获取每个文本。) 我想知道如何将另一个 UILabel 附加到 UILabel 中每个文本的末尾。
我找到了这个 Q&A 但作者没有提到解决方案具体来说。 请让我分享您的方法和解决问题的方法。提前谢谢你们!^^
我想我应该添加一些信息。 例如,这是 2 个标签。
这是放入 UITableView、
UITableViewCell 01/20
的测试标签01/20 这是另一个标签 01/19
您可以在每个文本旁边看到的那些日期(01/20、01/19)是我想要附加的另一个标签。我无法直接将日期作为字符串附加,因为普通文本和日期具有不同的颜色和样式。正如一些人告诉我的那样,我尝试了“sizeToFit”,但这只向我显示了整个文本的框架。我该怎么办T_T
In my project, there's a UILabel in each UITableViewCell.
Text in each label varies from 1 line to 2 or 3 lines. (I get each text dynamically.)
I wonder how I can append another UILabel to the end of each text in UILabel.
I found this Q&A but the author didn't mention solution specifically.
Please let me share your ways and problem-solving. Thank you guys in advance!^^
I think I should add some information more.
For example, these are 2 labels.
This is the test Label for put in UITableView,
UITableViewCell 01/20
This is another label 01/19
Those dates(01/20, 01/19) that you can see next to each text are the another labels I wanna append. I can't append dates as a string directly cause the normal text and date are have different color and style. I tried 'sizeToFit' as some people told me, but that only show me a frame around whole text. What should I do T_T
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为变体:
然后计算新插入的 UILabel 的坐标。
As a variant:
And then calculate the coordinates of the new insert UILabel.
我希望这就是您正在寻找的
I hope this is what you are looking for