gpt4 book ai didi

ios - Storyboard 中的 UITextView - 有没有办法以编程方式附加文本?

转载 作者:行者123 更新时间:2023-12-01 17:52:01 25 4
gpt4 key购买 nike

我在 UITextView 中有一些文字我在 storyboard 中写的.我这样做是因为我在那里使用了颜色和粗体字体,这使它更容易。
我想添加一些取自变量的文本。有没有办法以编程方式做到这一点?我的意思是在我最初放入 storyboard 的文本中附加一些文本?

最佳答案

从 Storyboard 创建对 textView 的引用,然后在运行时

迅速

let textToAppend = "some text"
mytextView.text = textView.text.stringByAppendingString(textToAppend)

objective-c
mytextView.text = [mytextView.text sringByAppendingString:variableText];

关于ios - Storyboard 中的 UITextView - 有没有办法以编程方式附加文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27146814/

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