附加后替换NSMutableAttributedString的内容

时间:2018-06-03 09:52:46

标签: ios swift uitextview nsmutableattributedstring

我想更改已添加到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 中的文字?

0 个答案:

没有答案