我想更改已添加到anonter NSMutableAttributedString
的{{1}}对象的内容(显示在NSMutableAttributedString
中)。
以下代码未更新屏幕上的文本:
UITextView
所有图片附件都在更新,因此这不是UITextView问题。
那么,如何更新var my_text = NSMutableAttributedString.init(string: "")
my_text_view.attributedText = my_text
let ats = NSMutableAttributedString.init(string: ":"+sml+":", attributes: [.font:UIFont.systemFont(ofSize: 16),.foregroundColor:UIColor.gray])
my_text.append(ats)
my_text_view.attributedText = my_text // this refreshes all attachments
...
ats.mutableString.setString("") // The text on the screen did not changed
my_text_view.attributedText = my_text // Still no changes
中的文字?