UITextView setText 只能工作一次
我的 xib 和 UIViewController 类中有一个 UITextView,我在这个元素上调用 setText。它工作正常 - 一次。
随后,它不会设置文本并保留旧文本。
我对 UINavigationBar 也有同样的问题,其中 navBar.topItem.title 可以设置一次,但不能再次设置。
如何清除旧值并显示新值?
谢谢 德肖恩
I have a UITextView in my xib and in my UIViewController class, I call setText on this element. It works correctly - once.
Subsequently, it does not set the text and the old text remains.
I also have the same problem with UINavigationBar, where navBar.topItem.title can be set once but not again.
How do I clear the old values and get the new values to show?
Thanks
DeShawn
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“随后”是指“在下一行代码上”还是“下次单击按钮时”?
我想后者是合适的,你不把你的插座设置为零吗?
Does 'subsequently' mean 'on the next line of code' or 'the next time a button is clicked' ?
The latter is appropriate I guess, don't you set your outlet to nil somewhere ?