文本字段的异常行为。在按钮的单击事件上清除文本字段数据

发布于 2024-10-24 06:53:10 字数 252 浏览 2 评论 0原文

当用户单击按钮时,我想清除文本字段。我该怎么做?

我的代码如下=>

textFieldName.text = nil;
textViewAddress.text = nil;

但这段代码并没有清除文本字段,而是清除了textView。另外,当我使用 iPhone 键盘上的退格按钮时,它不会清除文本字段。如果我在文本字段中写入内容,它就会开始在现有字符之上写入。

请朋友们帮助我。谢谢

When user click on button , I want to clear text field. How can i do this?

My code is as follows =>

textFieldName.text = nil;
textViewAddress.text = nil;

But this code is not clearing the text field, but it clears the textView. Also when i use backspace button from keyboard of iphone it is not clearing textfield. If i write something in textfield it starts writing on top of existing characters.

Please help me friends. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

臻嫒无言 2024-10-31 06:53:10

也许这就足够了

textFieldName.text = @"";
textViewAddress.text = @"";

Maybe this would be sufficient

textFieldName.text = @"";
textViewAddress.text = @"";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文