如何在 UILabel 的多行文本之间动态添加新文本

发布于 2024-12-27 09:35:13 字数 105 浏览 1 评论 0原文

我在 UITableview 单元格内有一个 UILabel 。该标签具有多行文本。我需要在第一个标签的任何一行(取决于某些条件)中添加另一个标签(文本)。是否有可能或者有其他方法可以做到这一点?

I have a UILabel inside a UITableview cell. The label has multiline text. I need to add another label(text) in any one of the line(depending on some conditions) of the first label. Is it possible or is there an alternate way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅忆流年 2025-01-03 09:35:13

我的理解是:您想要编辑标签以添加一些文本。

这是一种有点草率的方法,但你可以这样做:

NSMutableArray *arrayOfLines = [labelOfYourCell.text componentsSeparatedByString:@"\n"];

然后只需在你想要的位置添加所需的文本,然后将数组中的字符串组合成 1 个字符串,就像这样:

NSString *finalString;
for (int i = 0; i < arrayOfLines.count; i++) {
  finalString = [NSString stringWithFormat:@"%@\n%@", finalString, [arrayOfLines objectAtIndex:i]];
}

这只是不使用 Xcode 的快速示例,所以有可能会出现一些错误。

希望有帮助

What I understood: you want to edit your label to add some text.

Here's kinda sloppy way, but you can do something like that:

NSMutableArray *arrayOfLines = [labelOfYourCell.text componentsSeparatedByString:@"\n"];

and then just add the desired text where you want and after that combine there strings in the array into 1 string, something like that:

NSString *finalString;
for (int i = 0; i < arrayOfLines.count; i++) {
  finalString = [NSString stringWithFormat:@"%@\n%@", finalString, [arrayOfLines objectAtIndex:i]];
}

that's just quick example without using Xcode, so there may be some errors.

Hope it helps

赴月观长安 2025-01-03 09:35:13

当您获得所需的文本时,重新加载表格视图的单元格

,使用“UITableView”的以下方法重新加载行

    – reloadRowsAtIndexPaths:withRowAnimation:

,并在“cellForRowAtIndexPat:(IndexPath*)indexPath”方法中创建一个新文本并在标签中设置

Reload the cell of table view when you get required text

reload the row by using following method of "UITableView"

    – reloadRowsAtIndexPaths:withRowAnimation:

and in "cellForRowAtIndexPat:(IndexPath*)indexPath" method create a new text and set in label

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文