触发界面按钮char wbuf[16] = "0123456789abcdef\0"
按钮时,我无法清除UITextField
的属性文本。
我尝试了clear
,但它没有用。接下来发生的事情是UI冻结,我无法再与UI交互。
此外,不会从UI中删除_textfield.attributedText = nil;
。
注意:
我无法使用textfield的attributedText
属性,因为我的text
中有icon
和string
。因此,我必须使用它。
非常感谢任何帮助。
Ronak
答案 0 :(得分:0)
为什么不尝试设置空的属性字符串:
let emptyAttributedString = NSMutableAttributedString()
textView.attributedText = emptyAttributedString
也许您可以将其放在与clear
按钮挂钩的IB动作中?