如何在 UILabel 的多行文本之间动态添加新文本
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的理解是:您想要编辑标签以添加一些文本。
这是一种有点草率的方法,但你可以这样做:
然后只需在你想要的位置添加所需的文本,然后将数组中的字符串组合成 1 个字符串,就像这样:
这只是不使用 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:
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:
that's just quick example without using Xcode, so there may be some errors.
Hope it helps
当您获得所需的文本时,重新加载表格视图的单元格
,使用“UITableView”的以下方法重新加载行
,并在“cellForRowAtIndexPat:(IndexPath*)indexPath”方法中创建一个新文本并在标签中设置
Reload the cell of table view when you get required text
reload the row by using following method of "UITableView"
and in "cellForRowAtIndexPat:(IndexPath*)indexPath" method create a new text and set in label